using Biskilog_Accounting.Shared.POSModels; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Biskilog_Accounting.Shared.CustomModels { public class ProductItem { public Tblproduct? Product { get; set; } public Tblinventory? Stock { get; set; } public Restocklevel? Restocklevel { get; set; } public List Units { get; set; } = new List(); public string BaseUnit { get; set; } = string.Empty; } }