10 lines
147 B
C#
10 lines
147 B
C#
|
|
namespace WorkTracker.Domain;
|
||
|
|
|
||
|
|
public enum CalendarEventType
|
||
|
|
{
|
||
|
|
Generic = 0,
|
||
|
|
DayOff = 1,
|
||
|
|
Closure = 2,
|
||
|
|
Holiday = 3,
|
||
|
|
Illness = 4
|
||
|
|
}
|