Files
ravenqbi/AyaNovaQBI/PartStockLevel.cs
2022-07-05 14:01:43 +00:00

20 lines
555 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
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
}