mirror of
https://github.com/alexmickelson/canvasManagement.git
synced 2026-03-26 15:48:32 -06:00
scafolded project
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
|
||||
|
||||
namespace Model.SisImports {
|
||||
|
||||
public class SisImportStatisticModel {
|
||||
|
||||
[JsonPropertyName("created")]
|
||||
public ulong? Created { get; set; }
|
||||
|
||||
[JsonPropertyName("concluded")]
|
||||
public ulong? Concluded { get; set; }
|
||||
|
||||
[JsonPropertyName("deactivated")]
|
||||
public ulong? Deactivated { get; set; }
|
||||
|
||||
[JsonPropertyName("restored")]
|
||||
public ulong? Restored { get; set; }
|
||||
|
||||
[JsonPropertyName("deleted")]
|
||||
public ulong? Deleted { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user