Class3.cs 364 B

123456789101112131415161718
  1. namespace WpfApp2.model
  2. {
  3. public class SparesDetail
  4. {
  5. public string title { get; set; }
  6. }
  7. public class SparesPrice
  8. {
  9. public string title { get; set; }
  10. public int PriceFrom { get; set; }
  11. public int PriceTo { get; set; }
  12. }
  13. public class SparesType
  14. {
  15. public string title { get; set; }
  16. }
  17. }