forked from jscarle/OnePassword.NET
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGroupType.cs
More file actions
45 lines (38 loc) · 877 Bytes
/
GroupType.cs
File metadata and controls
45 lines (38 loc) · 877 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
using OnePassword.Common;
namespace OnePassword.Groups;
/// <summary>
/// Represents type of 1Password group.
/// </summary>
[JsonConverter(typeof(JsonStringEnumConverterEx<GroupType>))]
public enum GroupType
{
/// <summary>
/// Administrators
/// </summary>
[EnumMember(Value = "Administrators")]
Administrators,
/// <summary>
/// Owners
/// </summary>
[EnumMember(Value = "Owners")]
Owners,
/// <summary>
/// Recovery
/// </summary>
[EnumMember(Value = "Recovery")]
Recovery,
/// <summary>
/// Team Members
/// </summary>
[EnumMember(Value = "Team Members")]
TeamMembers,
/// <summary>
/// The group type is unknown.
/// </summary>
Unknown,
/// <summary>
/// The group type is user defined.
/// </summary>
[EnumMember(Value = "User Defined")]
User
}