22 lines
455 B
C#
22 lines
455 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace SubdShoeStore;
|
|||
|
|
|||
|
public partial class Consignment
|
|||
|
{
|
|||
|
public int Consignmentid { get; set; }
|
|||
|
|
|||
|
public int Size { get; set; }
|
|||
|
|
|||
|
public int Amount { get; set; }
|
|||
|
|
|||
|
public DateOnly EnterDate { get; set; }
|
|||
|
|
|||
|
public int Rangeid { get; set; }
|
|||
|
|
|||
|
public virtual Range Range { get; set; } = null!;
|
|||
|
|
|||
|
public virtual ICollection<Selling> Sellings { get; set; } = new List<Selling>();
|
|||
|
}
|