2024-12-27 00:18:46 +01:00
|
|
|
|
using System;
|
|
|
|
|
|
using SQLite;
|
|
|
|
|
|
using Wino.Core.Domain.Enums;
|
|
|
|
|
|
|
2025-02-16 11:54:23 +01:00
|
|
|
|
namespace Wino.Core.Domain.Entities.Calendar;
|
|
|
|
|
|
|
|
|
|
|
|
// TODO: Connect to Contact store with Wino People.
|
|
|
|
|
|
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; }
|
2024-12-27 00:18:46 +01:00
|
|
|
|
}
|