14 lines
432 B
C#
14 lines
432 B
C#
namespace AyaNovaQBI
|
|
{
|
|
public class PartStockLevel
|
|
{
|
|
public long Id { get; set; }
|
|
public uint Concurrency { get; set; }
|
|
public long PartWarehouseId { get; set; }
|
|
public long PartId { get; set; }
|
|
public decimal MinimumQuantity { get; set; }
|
|
public string PartWarehouseDisplay { get; set; }//to display name in UI, not relevant to db or biz object
|
|
|
|
}//eoc
|
|
}
|