mirror of
https://github.com/alexmickelson/canvasManagement.git
synced 2026-03-26 07:38:33 -06:00
scafolded project
This commit is contained in:
@@ -0,0 +1,28 @@
|
||||
using System;
|
||||
|
||||
|
||||
namespace Model.GradingPeriods {
|
||||
public class GradingPeriodModel {
|
||||
|
||||
[JsonPropertyName("id")]
|
||||
public ulong Id { get; set; }
|
||||
|
||||
[JsonPropertyName("title")]
|
||||
public string Title { get; set; }
|
||||
|
||||
[JsonPropertyName("start_date")]
|
||||
public DateTime? StartDate { get; set; }
|
||||
|
||||
[JsonPropertyName("end_date")]
|
||||
public DateTime? EndDate { get; set; }
|
||||
|
||||
[JsonPropertyName("close_date")]
|
||||
public DateTime? CloseDate { get; set; }
|
||||
|
||||
[JsonPropertyName("weight")]
|
||||
public double? Weight { get; set; }
|
||||
|
||||
[JsonPropertyName("is_closed")]
|
||||
public bool? IsClosed { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
using System.Collections.Generic;
|
||||
|
||||
|
||||
namespace Model.GradingPeriods {
|
||||
public class RedundantGradingPeriodResponse {
|
||||
[JsonPropertyName("grading_periods")]
|
||||
public IEnumerable<GradingPeriodModel> GradingPeriods { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user