Files

10 lines
133 B
C#
Raw Permalink Normal View History

2025-02-16 11:54:23 +01:00
namespace Wino.Core.Domain.Enums;
public enum CalendarItemRecurrenceFrequency
2024-11-10 23:28:25 +01:00
{
2025-02-16 11:54:23 +01:00
Daily,
Weekly,
Monthly,
Yearly
2024-11-10 23:28:25 +01:00
}