mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-16 01:41:14 +08:00
16 lines
308 B
C#
16 lines
308 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Text;
|
|||
|
using Microsoft.AspNetCore.Components;
|
|||
|
|
|||
|
namespace AntDesign
|
|||
|
{
|
|||
|
public class ModalTemplate<TComponentOptions> : TemplateComponentBase<TComponentOptions>
|
|||
|
{
|
|||
|
[Parameter]
|
|||
|
public ModalRef ModalRef { get; set; }
|
|||
|
|
|||
|
|
|||
|
}
|
|||
|
}
|