using System; using System.Collections.Generic; namespace Biskilog_Accounting.Shared.POSModels; public partial class Restocklevel { public string ProductId { get; set; } = null!; public string BranchId { get; set; } = null!; public int? WarnLevel { get; set; } public string? Unit { get; set; } }