Files
Wino-Mail/Wino.Core.Domain/Interfaces/IAccountCalendar.cs
T

22 lines
621 B
C#
Raw Normal View History

using System;
2026-01-03 19:33:36 +01:00
using Wino.Core.Domain.Entities.Shared;
using Wino.Core.Domain.Enums;
2025-02-16 11:54:23 +01:00
namespace Wino.Core.Domain.Interfaces;
public interface IAccountCalendar
{
2025-02-16 11:54:23 +01:00
string Name { get; set; }
string TextColorHex { get; set; }
string BackgroundColorHex { get; set; }
bool IsPrimary { get; set; }
2026-04-14 17:52:38 +02:00
bool IsReadOnly { get; set; }
bool IsSynchronizationEnabled { get; set; }
2025-02-16 11:54:23 +01:00
Guid AccountId { get; set; }
string RemoteCalendarId { get; set; }
bool IsExtended { get; set; }
CalendarItemShowAs DefaultShowAs { get; set; }
2025-02-16 11:54:23 +01:00
Guid Id { get; set; }
2026-01-03 19:33:36 +01:00
MailAccount MailAccount { get; set; }
}