using System; using System.Collections.Generic; namespace samusev_42; public partial class Status { public int IdStatus { get; set; } public string StatusName { get; set; } = null!; public virtual ICollection Deliveries { get; set; } = new List(); }