mirror of
https://github.com/alexmickelson/canvasManagement.git
synced 2026-03-26 07:38:33 -06:00
reformatted models
This commit is contained in:
@@ -1,35 +1,34 @@
|
||||
|
||||
|
||||
|
||||
namespace Model.Enrollments {
|
||||
|
||||
public class GradeModel {
|
||||
|
||||
[JsonPropertyName("html_url")]
|
||||
public string? HtmlUrl { get; set; }
|
||||
|
||||
[JsonPropertyName("current_grade")]
|
||||
public string? CurrentGrade { get; set; }
|
||||
|
||||
[JsonPropertyName("final_grade")]
|
||||
public string? FinalGrade { get; set; }
|
||||
|
||||
[JsonPropertyName("current_score")]
|
||||
public string? CurrentScore { get; set; }
|
||||
|
||||
[JsonPropertyName("final_score")]
|
||||
public string? FinalScore { get; set; }
|
||||
|
||||
[JsonPropertyName("unposted_current_grade")]
|
||||
public string? UnpostedCurrentGrade { get; set; }
|
||||
|
||||
[JsonPropertyName("unposted_final_grade")]
|
||||
public string? UnpostedFinalGrade { get; set; }
|
||||
|
||||
[JsonPropertyName("unposted_current_score")]
|
||||
public string? UnpostedCurrentScore { get; set; }
|
||||
|
||||
[JsonPropertyName("unposted_final_score")]
|
||||
public string? UnpostedFinalScore { get; set; }
|
||||
}
|
||||
namespace CanvasModel.Enrollments;
|
||||
public class GradeModel
|
||||
{
|
||||
|
||||
[JsonPropertyName("html_url")]
|
||||
public string? HtmlUrl { get; set; }
|
||||
|
||||
[JsonPropertyName("current_grade")]
|
||||
public string? CurrentGrade { get; set; }
|
||||
|
||||
[JsonPropertyName("final_grade")]
|
||||
public string? FinalGrade { get; set; }
|
||||
|
||||
[JsonPropertyName("current_score")]
|
||||
public string? CurrentScore { get; set; }
|
||||
|
||||
[JsonPropertyName("final_score")]
|
||||
public string? FinalScore { get; set; }
|
||||
|
||||
[JsonPropertyName("unposted_current_grade")]
|
||||
public string? UnpostedCurrentGrade { get; set; }
|
||||
|
||||
[JsonPropertyName("unposted_final_grade")]
|
||||
public string? UnpostedFinalGrade { get; set; }
|
||||
|
||||
[JsonPropertyName("unposted_current_score")]
|
||||
public string? UnpostedCurrentScore { get; set; }
|
||||
|
||||
[JsonPropertyName("unposted_final_score")]
|
||||
public string? UnpostedFinalScore { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user