13 lines
259 B
C#
13 lines
259 B
C#
using Microsoft.AspNetCore.Components;
|
|
|
|
namespace antblazorpro.Pages.Dashboard.Monitor
|
|
{
|
|
public partial class Pie
|
|
{
|
|
[Parameter]
|
|
public bool? Animate { get; set; }
|
|
|
|
[Parameter]
|
|
public int? LineWidth { get; set; }
|
|
}
|
|
} |