feat: added all enums needed

This commit is contained in:
StevanFreeborn
2023-01-26 23:26:01 -06:00
parent 4258793544
commit fcc47993cd
10 changed files with 72 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
enum TimeSpanIncrement {
Seconds = 'Seconds',
Minutes = 'Minutes',
Hours = 'Hours',
Days = 'Days',
Weeks = 'Weeks',
Months = 'Months',
Years = 'Years',
}