mirror of
https://github.com/alexmickelson/canvasManagement.git
synced 2026-03-26 07:38:33 -06:00
15 lines
334 B
C#
15 lines
334 B
C#
|
|
namespace CanvasModel.SisImports;
|
|
public class SisImportDataModel
|
|
{
|
|
|
|
[JsonPropertyName("import_type")]
|
|
public string ImportType { get; set; }
|
|
|
|
[JsonPropertyName("supplied_batches")]
|
|
public IEnumerable<string> SuppliedBatches { get; set; }
|
|
|
|
[JsonPropertyName("counts")]
|
|
public SisImportCountsModel? Counts { get; set; }
|
|
}
|