mirror of
https://github.com/bitwarden/server
synced 2025-12-29 06:33:43 +00:00
11 lines
359 B
C#
11 lines
359 B
C#
using Bit.Core.Entities;
|
|
using Bit.Core.Models.Data.Organizations.OrganizationConnections;
|
|
|
|
namespace Bit.Core.OrganizationFeatures.OrganizationConnections.Interfaces
|
|
{
|
|
public interface IUpdateOrganizationConnectionCommand
|
|
{
|
|
Task<OrganizationConnection> UpdateAsync<T>(OrganizationConnectionData<T> connectionData) where T : new();
|
|
}
|
|
}
|