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

stub out policy models and repos

This commit is contained in:
Kyle Spearrin
2020-01-06 14:27:16 -05:00
parent 4e4644e17d
commit 9caaab0537
4 changed files with 77 additions and 0 deletions

View File

@ -0,0 +1,8 @@
namespace Bit.Core.Enums
{
public enum PolicyType : byte
{
TwoStepLogin = 0,
MasterPassword = 1
}
}