mirror of
https://github.com/alexmickelson/canvasManagement.git
synced 2026-03-26 07:38:33 -06:00
22 lines
446 B
C#
22 lines
446 B
C#
|
|
|
|
namespace CanvasModel.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; }
|
|
}
|