2024-12-29 17:41:54 +01:00
|
|
|
using System;
|
2026-01-03 19:33:36 +01:00
|
|
|
using Wino.Core.Domain.Entities.Shared;
|
2026-02-12 18:04:29 +01:00
|
|
|
using Wino.Core.Domain.Enums;
|
2024-12-29 17:41:54 +01:00
|
|
|
|
2025-02-16 11:54:23 +01:00
|
|
|
namespace Wino.Core.Domain.Interfaces;
|
|
|
|
|
|
|
|
|
|
public interface IAccountCalendar
|
2024-12-29 17:41:54 +01:00
|
|
|
{
|
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; }
|
2026-02-12 18:04:29 +01:00
|
|
|
bool IsSynchronizationEnabled { get; set; }
|
2025-02-16 11:54:23 +01:00
|
|
|
Guid AccountId { get; set; }
|
|
|
|
|
string RemoteCalendarId { get; set; }
|
|
|
|
|
bool IsExtended { get; set; }
|
2026-02-12 18:04:29 +01:00
|
|
|
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; }
|
2024-12-29 17:41:54 +01:00
|
|
|
}
|