Single synchronizer for calendar and mail.

This commit is contained in:
Burak Kaan Köse
2024-11-30 12:47:24 +01:00
parent 2bc5be2105
commit 14e10c038c
25 changed files with 179 additions and 78 deletions

View File

@@ -5,10 +5,10 @@ namespace Wino.Core.Domain.Interfaces
{
public interface ICalendarItem
{
string Name { get; }
string Title { get; }
Guid Id { get; }
DateTime StartTime { get; }
DateTime EndTime { get; }
DateTimeOffset StartTime { get; }
DateTimeOffset EndTime { get; }
TimeRange Period { get; }
}
}