using System; using System.Collections.Generic; namespace shoe_store.Models; public partial class OrderStatus { public int IdOrderStatus { get; set; } public string StatusName { get; set; } = null!; public virtual ICollection Orders { get; set; } = new List(); }