feat(calendar): add application date integrations
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
namespace JobTrackerApi.Models;
|
||||
|
||||
public sealed record ExternalCalendarEventRequest(
|
||||
string StableId,
|
||||
string Summary,
|
||||
string? Description,
|
||||
string? Location,
|
||||
DateTimeOffset StartsAtUtc,
|
||||
DateTimeOffset EndsAtUtc,
|
||||
bool AllDay);
|
||||
|
||||
public sealed record ExternalCalendarEventResult(string? Id, string? WebUrl);
|
||||
Reference in New Issue
Block a user