using System; using System.Collections.Generic; namespace ShoeShopMvc.Models; public partial class Supplier { public string SupplierId { get; set; } = null!; public string SupplierName { get; set; } = null!; }