12 lines
323 B
C#
12 lines
323 B
C#
using System.Collections.Generic;
|
|
using Wino.Core.Domain.Entities.Calendar;
|
|
using Wino.Core.Domain.Entities.Shared;
|
|
|
|
namespace Wino.Core.Domain.Models.Calendar;
|
|
|
|
public class CalendarPickerAccountGroup
|
|
{
|
|
public MailAccount Account { get; set; } = null!;
|
|
public List<AccountCalendar> Calendars { get; set; } = [];
|
|
}
|