ant-design-blazor/components/modal/modalDialog/ModalTemplate.cs

21 lines
480 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Text;
using Microsoft.AspNetCore.Components;
namespace AntDesign
{
/// <summary>
/// ModalTemplate
/// </summary>
/// <typeparam name="TComponentOptions"></typeparam>
public class ModalTemplate<TComponentOptions> : TemplateComponentBase<TComponentOptions>
{
/// <summary>
///
/// </summary>
[Parameter]
public ModalRef ModalRef { get; set; }
}
}