25 lines
984 B
C#
25 lines
984 B
C#
namespace Socialize.Api.Modules.CalendarIntegrations.Data;
|
|
|
|
internal class CalendarEvent
|
|
{
|
|
public Guid Id { get; init; }
|
|
public Guid CalendarSourceId { get; set; }
|
|
public required string SourceEventUid { get; set; }
|
|
public required string Title { get; set; }
|
|
public string? Description { get; set; }
|
|
public bool IsAllDay { get; set; }
|
|
public bool IsFloatingTime { get; set; }
|
|
public DateOnly StartDate { get; set; }
|
|
public DateOnly EndDate { get; set; }
|
|
public DateTime? StartLocalDateTime { get; set; }
|
|
public DateTime? EndLocalDateTime { get; set; }
|
|
public DateTimeOffset? StartUtc { get; set; }
|
|
public DateTimeOffset? EndUtc { get; set; }
|
|
public string? TimeZoneId { get; set; }
|
|
public string? RecurrenceId { get; set; }
|
|
public string? Location { get; set; }
|
|
public string? SourceUrl { get; set; }
|
|
public DateTimeOffset? SourceLastModifiedAt { get; set; }
|
|
public DateTimeOffset ImportedAt { get; set; }
|
|
}
|