using Biskilog_Accounting.Shared.CustomModels; using Microsoft.AspNetCore.Components; namespace Biskilog_Accounting.Client.Pages.Dashboard.Elements { public partial class LowStockItems { [Parameter] public IEnumerable LowStockProducts { get;set; } = new List(); } }