using System; using System.Collections.Generic; namespace ShoeShopMvc.Models; public partial class Product { public string Article { get; set; } = null!; public string ProductName { get; set; } = null!; public string EdIzm { get; set; } = null!; public int Price { get; set; } public string SupplierId { get; set; } = null!; public string ManufactureId { get; set; } = null!; public string CategoryId { get; set; } = null!; public int Skidka { get; set; } public string Colvo { get; set; } = null!; public string OpisanieProduct { get; set; } = null!; public string? Image { get; set; } }