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