feat(calendar): add application date integrations

This commit is contained in:
cesnimda
2026-08-31 22:24:38 +02:00
parent caf486dceb
commit 1152e05687
10 changed files with 547 additions and 2 deletions
@@ -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);