Files
Wino-Mail/Wino.Core.Domain/Interfaces/IAccountCalendar.cs
T
Burak Kaan Köse 9877656eea RSVP options.
2026-01-03 19:33:36 +01:00

18 lines
458 B
C#

using System;
using Wino.Core.Domain.Entities.Shared;
namespace Wino.Core.Domain.Interfaces;
public interface IAccountCalendar
{
string Name { get; set; }
string TextColorHex { get; set; }
string BackgroundColorHex { get; set; }
bool IsPrimary { get; set; }
Guid AccountId { get; set; }
string RemoteCalendarId { get; set; }
bool IsExtended { get; set; }
Guid Id { get; set; }
MailAccount MailAccount { get; set; }
}