Files

14 lines
250 B
C#
Raw Permalink Normal View History

2026-01-01 10:07:56 +01:00
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
}