mirror of
https://github.com/alexmickelson/canvasManagement.git
synced 2026-03-26 15:48:32 -06:00
22 lines
461 B
C#
22 lines
461 B
C#
namespace CanvasModel.Assignments;
|
|
|
|
public record CanvasAssignmentDate
|
|
(
|
|
[property: JsonPropertyName("title")]
|
|
string Title,
|
|
|
|
[property: JsonPropertyName("id")]
|
|
ulong? Id = null,
|
|
|
|
[property: JsonPropertyName("base")]
|
|
bool? Base = null,
|
|
|
|
[property: JsonPropertyName("due_at")]
|
|
DateTime? DueAt = null,
|
|
|
|
[property: JsonPropertyName("unlock_at")]
|
|
DateTime? UnlockAt = null,
|
|
|
|
[property: JsonPropertyName("lock_at")]
|
|
DateTime? LockAt = null
|
|
); |