mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-14 17:01:18 +08:00
16 lines
358 B
C#
16 lines
358 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 Component { get; set; }
|
|
public void SetValue(object value);
|
|
}
|
|
}
|