2024-11-10 23:28:25 +01:00
|
|
|
|
using System;
|
|
|
|
|
|
using SQLite;
|
2024-12-29 17:41:54 +01:00
|
|
|
|
using Wino.Core.Domain.Interfaces;
|
2024-11-10 23:28:25 +01:00
|
|
|
|
|
|
|
|
|
|
namespace Wino.Core.Domain.Entities.Calendar
|
|
|
|
|
|
{
|
2024-12-29 17:41:54 +01:00
|
|
|
|
public class AccountCalendar : IAccountCalendar
|
2024-11-10 23:28:25 +01:00
|
|
|
|
{
|
|
|
|
|
|
[PrimaryKey]
|
|
|
|
|
|
public Guid Id { get; set; }
|
2024-12-29 17:41:54 +01:00
|
|
|
|
public Guid AccountId { get; set; }
|
2024-12-27 00:18:46 +01:00
|
|
|
|
public string RemoteCalendarId { get; set; }
|
|
|
|
|
|
public string SynchronizationDeltaToken { get; set; }
|
2024-11-10 23:28:25 +01:00
|
|
|
|
public string Name { get; set; }
|
2024-12-27 00:18:46 +01:00
|
|
|
|
public bool IsPrimary { get; set; }
|
2024-12-29 17:41:54 +01:00
|
|
|
|
public bool IsExtended { get; set; } = true;
|
|
|
|
|
|
public string TextColorHex { get; set; }
|
|
|
|
|
|
public string BackgroundColorHex { get; set; }
|
|
|
|
|
|
public string TimeZone { get; set; }
|
2024-11-10 23:28:25 +01:00
|
|
|
|
}
|
|
|
|
|
|
}
|