2024-12-27 00:18:46 +01:00
|
|
|
using System;
|
|
|
|
|
using SQLite;
|
2026-03-01 21:07:10 +01:00
|
|
|
using Wino.Core.Domain.Entities.Shared;
|
2024-12-27 00:18:46 +01:00
|
|
|
using Wino.Core.Domain.Enums;
|
|
|
|
|
|
2025-02-16 11:54:23 +01:00
|
|
|
namespace Wino.Core.Domain.Entities.Calendar;
|
|
|
|
|
|
|
|
|
|
public class CalendarEventAttendee
|
2024-12-27 00:18:46 +01:00
|
|
|
{
|
2025-02-16 11:54:23 +01:00
|
|
|
[PrimaryKey]
|
|
|
|
|
public Guid Id { get; set; }
|
|
|
|
|
public Guid CalendarItemId { get; set; }
|
|
|
|
|
public string Name { get; set; }
|
|
|
|
|
public string Email { get; set; }
|
|
|
|
|
public AttendeeStatus AttendenceStatus { get; set; }
|
|
|
|
|
public bool IsOrganizer { get; set; }
|
|
|
|
|
public bool IsOptionalAttendee { get; set; }
|
|
|
|
|
public string Comment { get; set; }
|
2026-03-01 21:07:10 +01:00
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Resolved contact from the contact store. Populated at runtime via IContactService;
|
|
|
|
|
/// not persisted to the database.
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Ignore]
|
|
|
|
|
public AccountContact ResolvedContact { get; set; }
|
2024-12-27 00:18:46 +01:00
|
|
|
}
|