Class3.cs 402 B

1234567891011121314151617181920
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace WpfApp1.model
  7. {
  8. public class ClientPrice
  9. {
  10. public string title { get; set; }
  11. public int PriceFrom { get; set; }
  12. public int PriceTo { get; set; }
  13. }
  14. public class ClientCategory
  15. {
  16. public string title { get; set; }
  17. }
  18. }