13 lines
331 B
C#
13 lines
331 B
C#
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);
|