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

16 lines
376 B
C#
Raw Normal View History

using System;
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; }
Guid AccountId { get; set; }
string RemoteCalendarId { get; set; }
bool IsExtended { get; set; }
Guid Id { get; set; }
}