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 CourseStudentSummaryModel {
[JsonPropertyName("id")]
public ulong Id { get; set; }
[JsonPropertyName("page_views")]
public uint PageViews { get; set; }
[JsonPropertyName("max_page_views")]
public uint? MaxPageViews { get; set; }
[JsonPropertyName("page_views_level")]
public uint? PageViewsLevel { get; set; }
[JsonPropertyName("participations")]
public uint Participations { get; set; }
[JsonPropertyName("max_participations")]
public uint? MaxParticipations { get; set; }
[JsonPropertyName("participations_level")]
public uint? ParticipationsLevel { get; set; }
[JsonPropertyName("tardiness_breakdown")]
public TardinessModel TardinessBreakdown { get; set; }
}
namespace CanvasModel.Analytics;
public class CourseStudentSummaryModel
{
[JsonPropertyName("id")]
public ulong Id { get; set; }
[JsonPropertyName("page_views")]
public uint PageViews { get; set; }
[JsonPropertyName("max_page_views")]
public uint? MaxPageViews { get; set; }
[JsonPropertyName("page_views_level")]
public uint? PageViewsLevel { get; set; }
[JsonPropertyName("participations")]
public uint Participations { get; set; }
[JsonPropertyName("max_participations")]
public uint? MaxParticipations { get; set; }
[JsonPropertyName("participations_level")]
public uint? ParticipationsLevel { get; set; }
[JsonPropertyName("tardiness_breakdown")]
public TardinessModel TardinessBreakdown { get; set; }
}