9 lines
No EOL
250 B
C#
9 lines
No EOL
250 B
C#
namespace DeliveryWebApi.Model;
|
|
|
|
public class Order : BaseEntity
|
|
{
|
|
public float Weight { get; init; }
|
|
public long DistrictId { get; init; }
|
|
public District District { get; init; } = null!;
|
|
public DateTime DeliveryDate { get; init; }
|
|
} |