Product.cs 364 B

12345678910111213141516171819
  1. using System;
  2. using System.Collections.Generic;
  3. namespace AvaloniaApplication4.Models;
  4. public partial class Product
  5. {
  6. public int? Id { get; set; }
  7. public string? Country { get; set; }
  8. public string? Аutomobile { get; set; }
  9. public string? Color { get; set; }
  10. public int? Count { get; set; }
  11. public decimal? Price { get; set; }
  12. }