28 lines
623 B
C#
28 lines
623 B
C#
![]() |
using Microsoft.AspNetCore.Components;
|
|||
|
|
|||
|
namespace antblazorpro.Pages.Dashboard.Analysis
|
|||
|
{
|
|||
|
public partial class ChartCard
|
|||
|
{
|
|||
|
[Parameter]
|
|||
|
public string Avatar { get; set; }
|
|||
|
|
|||
|
[Parameter]
|
|||
|
public string Title { get; set; }
|
|||
|
|
|||
|
[Parameter]
|
|||
|
public RenderFragment Action { get; set; }
|
|||
|
|
|||
|
[Parameter]
|
|||
|
public string Total { get; set; }
|
|||
|
|
|||
|
[Parameter]
|
|||
|
public RenderFragment ChildContent { get; set; }
|
|||
|
|
|||
|
[Parameter]
|
|||
|
public RenderFragment Footer { get; set; }
|
|||
|
|
|||
|
[Parameter]
|
|||
|
public string ContentHeight { get; set; }
|
|||
|
}
|
|||
|
}
|