mirror of
https://github.com/alexmickelson/canvasManagement.git
synced 2026-03-26 23:58:31 -06:00
working on canvas sync
This commit is contained in:
19
Management/Models/CanvasModels/Assignments/CanvasLockInfo.cs
Normal file
19
Management/Models/CanvasModels/Assignments/CanvasLockInfo.cs
Normal 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
|
||||
);
|
||||
Reference in New Issue
Block a user