1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-02 16:42:50 -05:00

added share data model

This commit is contained in:
Kyle Spearrin
2017-02-21 21:31:52 -05:00
parent 9ca2baba74
commit f101541ff8
11 changed files with 174 additions and 0 deletions

View File

@ -0,0 +1,9 @@
namespace Bit.Core.Enums
{
public enum ShareStatusType : byte
{
Pending = 0,
Accepted = 1,
Rejected = 2
}
}