mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-14 17:01:18 +08:00
18 lines
362 B
C#
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;
|
|
|
|
}
|
|
}
|