forked from AcaMate/AcaMate_Web
16 lines
279 B
C#
16 lines
279 B
C#
using Microsoft.AspNetCore.Components;
|
|
|
|
namespace Front.Program.Views.Project;
|
|
|
|
public partial class PageIndicator : ComponentBase
|
|
{
|
|
[Parameter]
|
|
public IndicateType Type { get; set; } = IndicateType.Page;
|
|
}
|
|
|
|
public enum IndicateType
|
|
{
|
|
Page,
|
|
Circle,
|
|
Progress
|
|
} |