using Bit.Core.Entities; using Bit.Core.Models.Data.Organizations.OrganizationConnections; namespace Bit.Core.OrganizationFeatures.OrganizationConnections.Interfaces { public interface IUpdateOrganizationConnectionCommand { Task UpdateAsync(OrganizationConnectionData connectionData) where T : new(); } }