10 lines
274 B
C#
10 lines
274 B
C#
using System.Threading.Tasks;
|
|
|
|
namespace Wino.Core.Integration
|
|
{
|
|
public abstract class BaseCalendarIntegrator<TNativeRequestType, TCalendarEventType>
|
|
{
|
|
public abstract Task<TCalendarEventType> CreateCalendarEventAsync(TNativeRequestType request);
|
|
}
|
|
}
|