using System; using System.Collections.Generic; namespace Cloud_Manager.Models.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; } }