You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
521 B
18 lines
521 B
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; }
|
|
[Parameter]
|
|
public bool IsLoading { get; set; } = true;
|
|
}
|
|
}
|
|
|