mirror of
https://github.com/bitwarden/server.git
synced 2026-02-05 08:33:10 +08:00
12 lines
389 B
C#
12 lines
389 B
C#
|
|
using System.Threading.Tasks;
|
|||
|
|
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();
|
|||
|
|
}
|
|||
|
|
}
|