more work;

This commit is contained in:
StevanFreeborn
2022-04-18 10:39:20 -05:00
parent bf42fc54a9
commit e7e0e5f0ad
4 changed files with 195 additions and 13 deletions
+29
View File
@@ -3,3 +3,32 @@ from enum import Enum
class DataFormat(Enum):
Raw = 0
Formatted = 1
class ResultValueType(Enum):
String = 0
Integer = 1
Decimal = 2
Date = 3
TimeSpan = 4
Guid = 5
StringList = 6
IntegerList = 7
GuidList = 8
AttachmentList = 9
ScoringGroupList = 10
FileList = 11
class Increment(Enum):
Seconds = 0
Minutes = 1
Hours = 2
Days = 3
Weeks = 4
Months = 5
Years = 6
class Recurrence(Enum):
Empty = "None"
EndByDate = "EndByDate"
EndAfterOccurrences = 'EndAfterOccurrences'