mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-14 17:01:18 +08:00
21 lines
446 B
C#
21 lines
446 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Text;
|
|||
|
using Microsoft.AspNetCore.Components;
|
|||
|
using OneOf;
|
|||
|
|
|||
|
namespace AntDesign
|
|||
|
{
|
|||
|
public partial class AutoCompleteOptGroup : AntDomComponentBase
|
|||
|
{
|
|||
|
[Parameter]
|
|||
|
public string Label { get; set; }
|
|||
|
|
|||
|
[Parameter]
|
|||
|
public RenderFragment LabelFragment { get; set; }
|
|||
|
|
|||
|
[Parameter]
|
|||
|
public RenderFragment ChildContent { get; set; }
|
|||
|
}
|
|||
|
}
|