ant-design-blazor/components/date-picker/internal/PickerPanelBase.cs
2020-05-29 00:33:49 +08:00

18 lines
362 B
C#

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;
}
}