mirror of
https://github.com/alexmickelson/canvasManagement.git
synced 2026-03-25 23:28:33 -06:00
19 lines
445 B
C#
19 lines
445 B
C#
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
|
|
); |