14 lines
289 B
C#
14 lines
289 B
C#
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<Delivery> Deliveries { get; set; } = new List<Delivery>();
|
|
}
|