This commit is contained in:
2021-11-24 23:02:57 +00:00
parent f2a5de5ad8
commit 492430bb8c
3 changed files with 71 additions and 1 deletions

View File

@@ -112,6 +112,20 @@ namespace AyaNova.Models
}//eoc
//DTO object used when Customer posts a new unit of their own when using CSR form
public class CustomerPostUnit
{
[Required]
public string Serial { get; set; }
[Required]
public long CustomerId { get; set; }
public long? UnitModelId { get; set; }
public string Description { get; set; }
}//eoc
}//eons
/*