1
0
mirror of https://github.com/bitwarden/server synced 2025-12-26 13:13:24 +00:00
Files
server/src/Core/OrganizationFeatures/OrganizationConnections/Interfaces/IDeleteOrganizationConnectionCommand.cs
2022-08-29 14:53:16 -04:00

9 lines
221 B
C#

using Bit.Core.Entities;
namespace Bit.Core.OrganizationFeatures.OrganizationConnections.Interfaces;
public interface IDeleteOrganizationConnectionCommand
{
Task DeleteAsync(OrganizationConnection connection);
}