mirror of
https://github.com/alexmickelson/canvasManagement.git
synced 2026-03-26 07:38:33 -06:00
28 lines
694 B
C#
28 lines
694 B
C#
using System;
|
|
|
|
|
|
|
|
namespace Model.Modules {
|
|
|
|
public class ContentDetailsModel {
|
|
|
|
[JsonPropertyName("points_possible")]
|
|
public uint? PointsPossible { get; set; }
|
|
|
|
[JsonPropertyName("due_at")]
|
|
public DateTime? DueAt { get; set; }
|
|
|
|
[JsonPropertyName("unlock_at")]
|
|
public DateTime? UnlockAt { get; set; }
|
|
|
|
[JsonPropertyName("lock_at")]
|
|
public DateTime? LockAt { get; set; }
|
|
|
|
[JsonPropertyName("locked_for_user")]
|
|
public bool? LockedForUser { get; set; }
|
|
|
|
[JsonPropertyName("lock_explanation")]
|
|
public string? LockExplanation { get; set; }
|
|
}
|
|
}
|