mirror of
https://github.com/bitwarden/server.git
synced 2025-06-15 07:20:49 -05:00
11 lines
248 B
C#
11 lines
248 B
C#
using Bit.Core.Entities;
|
|
|
|
namespace Bit.Core.Services
|
|
{
|
|
public interface IPolicyService
|
|
{
|
|
Task SaveAsync(Policy policy, IUserService userService, IOrganizationService organizationService,
|
|
Guid? savingUserId);
|
|
}
|
|
}
|