14 lines
250 B
C#
14 lines
250 B
C#
|
|
namespace Wino.Core.Domain.Enums;
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// Defines how a calendar item should be displayed in terms of availability.
|
||
|
|
/// </summary>
|
||
|
|
public enum CalendarItemShowAs
|
||
|
|
{
|
||
|
|
Free,
|
||
|
|
Tentative,
|
||
|
|
Busy,
|
||
|
|
OutOfOffice,
|
||
|
|
WorkingElsewhere
|
||
|
|
}
|