mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-14 08:51:27 +08:00
31aac9f914
* refactor: support to use the same template for confirm and modal * refactor: support to use the same template for drawer * refactor: separate interface IOkCancelRef * chore: modify EventUtil class summary Co-authored-by: James Yeung <shunjiey@hotmail.com>
23 lines
591 B
C#
23 lines
591 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Microsoft.AspNetCore.Components;
|
|
|
|
namespace AntDesign
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
/// <typeparam name="TComponentOptions"></typeparam>
|
|
public abstract class TemplateComponentBase<TComponentOptions> : AntComponentBase
|
|
{
|
|
/// <summary>
|
|
/// The options that allow you to pass in templates from the outside
|
|
/// </summary>
|
|
[Parameter]
|
|
public TComponentOptions Options { get; set; }
|
|
}
|
|
}
|