mirror of
https://github.com/alexmickelson/canvasManagement.git
synced 2026-03-26 15:48:32 -06:00
23 lines
551 B
C#
23 lines
551 B
C#
|
|
|
|
|
|
namespace Model.GradeChangelog {
|
|
|
|
public class GradeChangeEventLinksModel {
|
|
|
|
[JsonPropertyName("assignment")]
|
|
public ulong Assignment { get; set; }
|
|
|
|
[JsonPropertyName("course")]
|
|
public ulong Course { get; set; }
|
|
|
|
[JsonPropertyName("student")]
|
|
public ulong Student { get; set; }
|
|
|
|
[JsonPropertyName("grader")]
|
|
public ulong Grader { get; set; }
|
|
|
|
[JsonPropertyName("page_view")]
|
|
public string? PageView { get; set; }
|
|
}
|
|
} |