mirror of
https://github.com/alexmickelson/canvasManagement.git
synced 2026-03-25 23:28:33 -06:00
reformatted models
This commit is contained in:
@@ -1,31 +1,30 @@
|
||||
|
||||
|
||||
namespace Model.Analytics {
|
||||
|
||||
public class DepartmentStatisticsModel {
|
||||
|
||||
[JsonPropertyName("courses")]
|
||||
public ulong Courses { get; set; }
|
||||
|
||||
[JsonPropertyName("subaccounts")]
|
||||
public ulong Subaccounts { get; set; }
|
||||
|
||||
[JsonPropertyName("teacher")]
|
||||
public ulong Teachers { get; set; }
|
||||
|
||||
[JsonPropertyName("students")]
|
||||
public ulong Students { get; set; }
|
||||
|
||||
[JsonPropertyName("discussion_topics")]
|
||||
public ulong DiscussionTopics { get; set; }
|
||||
|
||||
[JsonPropertyName("media_objects")]
|
||||
public ulong MediaObjects { get; set; }
|
||||
|
||||
[JsonPropertyName("attachments")]
|
||||
public ulong Attachments { get; set; }
|
||||
|
||||
[JsonPropertyName("assignments")]
|
||||
public ulong Assignments { get; set; }
|
||||
}
|
||||
namespace CanvasModel.Analytics;
|
||||
public class DepartmentStatisticsModel
|
||||
{
|
||||
|
||||
[JsonPropertyName("courses")]
|
||||
public ulong Courses { get; set; }
|
||||
|
||||
[JsonPropertyName("subaccounts")]
|
||||
public ulong Subaccounts { get; set; }
|
||||
|
||||
[JsonPropertyName("teacher")]
|
||||
public ulong Teachers { get; set; }
|
||||
|
||||
[JsonPropertyName("students")]
|
||||
public ulong Students { get; set; }
|
||||
|
||||
[JsonPropertyName("discussion_topics")]
|
||||
public ulong DiscussionTopics { get; set; }
|
||||
|
||||
[JsonPropertyName("media_objects")]
|
||||
public ulong MediaObjects { get; set; }
|
||||
|
||||
[JsonPropertyName("attachments")]
|
||||
public ulong Attachments { get; set; }
|
||||
|
||||
[JsonPropertyName("assignments")]
|
||||
public ulong Assignments { get; set; }
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user