using System; using System.Collections.Generic; namespace shoe_store.Models; public partial class Supplier { public int IdSupplier { get; set; } public string SupplierName { get; set; } = null!; public virtual ICollection Products { get; set; } = new List(); }