mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-04 13:08:23 +08:00
16 lines
361 B
C#
16 lines
361 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Text;
|
|||
|
using Microsoft.AspNetCore.Components;
|
|||
|
using Microsoft.AspNetCore.Components.Web;
|
|||
|
|
|||
|
namespace AntDesign
|
|||
|
{
|
|||
|
public interface IAutoCompleteInput
|
|||
|
{
|
|||
|
[CascadingParameter]
|
|||
|
public IAutoCompleteRef AutoComplete { get; set; }
|
|||
|
public void SetValue(object value);
|
|||
|
}
|
|||
|
}
|