16 lines
323 B
C#
16 lines
323 B
C#
using Microsoft.AspNetCore.Components;
|
|
|
|
namespace antblazorpro.Pages.Dashboard.Monitor
|
|
{
|
|
public partial class WaterWave
|
|
{
|
|
[Parameter]
|
|
public string Title { get; set; }
|
|
|
|
[Parameter]
|
|
public int Percent { get; set; }
|
|
|
|
[Parameter]
|
|
public int? Height { get; set; }
|
|
}
|
|
} |