Files
Wino-Mail/Wino.Core.Domain/Entities/Calendar/CalendarEventAttendee.cs
T

27 lines
783 B
C#
Raw Normal View History

using System;
using SQLite;
2026-03-01 21:07:10 +01:00
using Wino.Core.Domain.Entities.Shared;
using Wino.Core.Domain.Enums;
2025-02-16 11:54:23 +01:00
namespace Wino.Core.Domain.Entities.Calendar;
public class CalendarEventAttendee
{
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; }
}