mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 21:18:13 -05:00
13 lines
296 B
C#
13 lines
296 B
C#
using System;
|
|
using System.Threading.Tasks;
|
|
using Bit.Core.Models.Table;
|
|
|
|
namespace Bit.Core.Services
|
|
{
|
|
public interface IPolicyService
|
|
{
|
|
Task SaveAsync(Policy policy, IUserService userService, IOrganizationService organizationService,
|
|
Guid? savingUserId);
|
|
}
|
|
}
|