using System; using System.Collections.Generic; namespace Biskilog_Cloud.Shared.Models; public partial class RestockLevel { public string ProductId { get; set; } = null!; public int? WarnLevel { get; set; } public string? Unit { get; set; } public string? BranchId { get; set; } public DateTime LastModified { get; set; } }