ant-design-blazor/components/core/Base/TemplateComponentBase.cs
TimChen 19f51c87fa fix(module: drawer): close event bug (#599)
* fix: drawer close event bug

* refactor: translate some comments

Co-authored-by: ElderJames <shunjiey@hotmail.com>
2020-09-16 19:42:48 +08:00

17 lines
429 B
C#

using System;
using System.Collections.Generic;
using System.Text;
using Microsoft.AspNetCore.Components;
namespace AntDesign
{
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; }
}
}