working on canvas sync

This commit is contained in:
2023-07-29 20:33:00 -06:00
parent 7c857a3887
commit 2cca727b4d
26 changed files with 362 additions and 83 deletions

View File

@@ -0,0 +1,19 @@
namespace CanvasModel.Assignments;
public record CanvasLockInfo
(
[property: JsonPropertyName("asset_string")]
string AssetString,
[property: JsonPropertyName("unlock_at")]
DateTime? UnlockAt = null,
[property: JsonPropertyName("lock_at")]
DateTime? LockAt = null,
[property: JsonPropertyName("context_module")]
object? ContextModule = null,
[property: JsonPropertyName("manually_locked")]
bool? ManuallyLocked = null
);