1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-13 21:57:30 -05:00

policy service

This commit is contained in:
Kyle Spearrin
2020-01-15 09:19:28 -05:00
parent 0d540e0040
commit 937bb4359f
2 changed files with 76 additions and 0 deletions

View File

@ -0,0 +1,11 @@
using System.Threading.Tasks;
using Bit.Core.Models.Table;
namespace Bit.Core.Services
{
public interface IPolicyService
{
Task SaveAsync(Policy policy);
Task DeleteAsync(Policy policy);
}
}