Class1.cs 508 B

12345678910111213141516
  1. namespace WpfApp2.model
  2. {
  3. public class Spares
  4. {
  5. public string name { get; set; }
  6. public int price { get; set; }
  7. public string detail { get; set; }
  8. public string type { get; set; }
  9. public List<SparesDetail> SparesDetailList { get; set; }
  10. public List<SparesPrice> SparesPriceList { get; set; }
  11. public List<SparesType> SparesTypeList { get; set; }
  12. public DateOnly date { get; set; }
  13. public bool available { get; set; }
  14. }
  15. }