Files
Wino-Mail/Wino.Core.Domain/Enums/CalendarItemShowAs.cs
T
2026-01-01 10:07:56 +01:00

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
}