2024-11-10 23:28:25 +01:00
|
|
|
|
using System;
|
|
|
|
|
|
using SQLite;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Wino.Core.Domain.Entities.Calendar
|
|
|
|
|
|
{
|
|
|
|
|
|
public class AccountCalendar
|
|
|
|
|
|
{
|
|
|
|
|
|
[PrimaryKey]
|
|
|
|
|
|
public Guid Id { 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 Guid AccountId { get; set; }
|
|
|
|
|
|
public string Name { get; set; }
|
|
|
|
|
|
public string ColorHex { get; set; }
|
2024-12-27 00:18:46 +01:00
|
|
|
|
public string TimeZone { get; set; }
|
|
|
|
|
|
public bool IsPrimary { get; set; }
|
2024-11-10 23:28:25 +01:00
|
|
|
|
}
|
|
|
|
|
|
}
|