mirror of
https://github.com/alexmickelson/canvasManagement.git
synced 2026-03-26 07:38:33 -06:00
19 lines
428 B
C#
19 lines
428 B
C#
using System.Collections.Generic;
|
|
|
|
|
|
|
|
namespace Model.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; }
|
|
}
|
|
}
|