reformatted models

This commit is contained in:
2023-01-04 17:22:36 -07:00
parent c8175971b7
commit c28230691e
122 changed files with 3812 additions and 4005 deletions

View File

@@ -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; }
}