-
-
Notifications
You must be signed in to change notification settings - Fork 32
/
Enums.cs
62 lines (59 loc) · 1.05 KB
/
Enums.cs
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
using System.ComponentModel;
using System.Text.Json.Serialization;
namespace Fenrus;
/// <summary>
/// Items size as they appear on a dashboard
/// </summary>
public enum ItemSize
{
/// <summary>
/// Small
/// </summary>
Small,
/// <summary>
/// Medium
/// </summary>
Medium,
/// <summary>
/// Large
/// </summary>
Large,
/// <summary>
/// Larger
/// </summary>
Larger,
/// <summary>
/// Extra Large
/// </summary>
XLarge,
/// <summary>
/// Extra Extra Large
/// </summary>
XXLarge
}
/// <summary>
/// An app property type, used to allow apps to request user input for custom properties
/// </summary>
public enum AppPropertyType
{
/// <summary>
/// String input
/// </summary>
String,
/// <summary>
/// Boolean input
/// </summary>
Bool,
/// <summary>
/// Password input
/// </summary>
Password,
/// <summary>
/// Select input
/// </summary>
Select,
/// <summary>
/// Integer
/// </summary>
Integer
}