using Microsoft.AspNetCore.Components; namespace Biskilog_Accounting.Client.Pages.Dashboard.Elements { public partial class AnalyticsItemSmall { [Parameter] public string Icon { get; set; } = string.Empty; [Parameter] public string Title { get; set; }= string.Empty; [Parameter] public double Value{ get; set; } [Parameter] public double Percentage { get;set; } } }