ant-design-blazor/components/date-picker/internal/PickerPanelBase.cs

18 lines
362 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Text;
using Microsoft.AspNetCore.Components;
namespace AntDesign.Internal
{
public class PickerPanelBase : AntDomComponentBase
{
[Parameter]
public Action<DateTime, int> OnSelect { get; set; }
[Parameter]
public int PickerIndex { get; set; } = 0;
}
}