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 string BaseUnit { get;set; } = string.Empty; } }