mirror of
https://github.com/alexmickelson/canvasManagement.git
synced 2026-03-25 23:28:33 -06:00
17 lines
356 B
C#
17 lines
356 B
C#
|
|
|
|
namespace Model.OutcomeResults {
|
|
|
|
public class OutcomeRollupLinksModel {
|
|
|
|
[JsonPropertyName("course")]
|
|
public ulong? Course { get; set; }
|
|
|
|
[JsonPropertyName("user")]
|
|
public ulong? User { get; set; }
|
|
|
|
[JsonPropertyName("section")]
|
|
public ulong? Section { get; set; }
|
|
}
|
|
}
|