using System; using System.Collections.Generic; namespace OOO_WriteAndClear.DBModels; public partial class OrderStatus { public int OrderStatusId { get; set; } public string OrderStatusName { get; set; } = null!; public virtual ICollection Orders { get; set; } = new List(); }