mirror of
https://github.com/bitwarden/server.git
synced 2026-02-09 10:23:10 +08:00
13 lines
292 B
C#
13 lines
292 B
C#
using System;
|
|
using System.Threading.Tasks;
|
|
using Bit.Core.Entities;
|
|
|
|
namespace Bit.Core.Services
|
|
{
|
|
public interface IPolicyService
|
|
{
|
|
Task SaveAsync(Policy policy, IUserService userService, IOrganizationService organizationService,
|
|
Guid? savingUserId);
|
|
}
|
|
}
|