Replaced DateTimeOffset usage in the calendar.

This commit is contained in:
Burak Kaan Köse
2025-05-20 21:08:19 +02:00
parent c4e561dee6
commit aba7539e7d
9 changed files with 47 additions and 67 deletions

View File

@@ -8,9 +8,9 @@ public interface ICalendarItem
string Title { get; }
Guid Id { get; }
IAccountCalendar AssignedCalendar { get; }
DateTime StartDate { get; set; }
DateTime StartDate { get; }
DateTime EndDate { get; }
double DurationInSeconds { get; set; }
double DurationInSeconds { get; }
ITimePeriod Period { get; }
bool IsAllDayEvent { get; }