mirror of
https://github.com/bitwarden/server
synced 2025-12-26 13:13:24 +00:00
9 lines
221 B
C#
9 lines
221 B
C#
using Bit.Core.Entities;
|
|
|
|
namespace Bit.Core.OrganizationFeatures.OrganizationConnections.Interfaces;
|
|
|
|
public interface IDeleteOrganizationConnectionCommand
|
|
{
|
|
Task DeleteAsync(OrganizationConnection connection);
|
|
}
|