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.
16 lines
446 B
16 lines
446 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; }
|
|
}
|
|
}
|
|
|