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