Ground work for Wino Calendar. (#475)

Wino Calendar abstractions.
This commit is contained in:
Burak Kaan Köse
2024-11-10 23:28:25 +01:00
committed by GitHub
parent a979e8430f
commit d1d6f12f05
486 changed files with 7969 additions and 2708 deletions

View File

@@ -0,0 +1,9 @@
using Wino.Core.Integration;
namespace Wino.Core.Synchronizers.Calendar
{
public abstract class BaseCalendarSynchronizer<TNativeRequestType, TCalendarEventType> : BaseCalendarIntegrator<TNativeRequestType, TCalendarEventType>
{
}
}

View File

@@ -0,0 +1,23 @@
using System;
using System.Threading.Tasks;
using Microsoft.Graph.Models;
using Microsoft.Kiota.Abstractions;
using Wino.Core.Domain.Entities.Shared;
namespace Wino.Core.Synchronizers.Calendar
{
public class OutlookCalendarSynchronizer : BaseCalendarSynchronizer<RequestInformation, Event>
{
public OutlookCalendarSynchronizer(MailAccount account)
{
Account = account;
}
public MailAccount Account { get; }
public override Task<Event> CreateCalendarEventAsync(RequestInformation request)
{
throw new NotImplementedException();
}
}
}