mirror of
https://github.com/alexmickelson/canvasManagement.git
synced 2026-03-25 23:28:33 -06:00
23 lines
556 B
C#
23 lines
556 B
C#
|
|
|
|
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; }
|
|
}
|
|
}
|