mirror of
https://github.com/bitwarden/server.git
synced 2026-02-15 13:23:26 +08:00
9 lines
225 B
C#
9 lines
225 B
C#
|
|
using Bit.Core.Entities;
|
|||
|
|
|
|||
|
|
namespace Bit.Core.SecretManagerFeatures.AccessPolicies.Interfaces;
|
|||
|
|
|
|||
|
|
public interface IUpdateAccessPolicyCommand
|
|||
|
|
{
|
|||
|
|
public Task<BaseAccessPolicy> UpdateAsync(Guid id, bool read, bool write);
|
|||
|
|
}
|