mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-15 17:31:42 +08:00
19f51c87fa
* fix: drawer close event bug * refactor: translate some comments Co-authored-by: ElderJames <shunjiey@hotmail.com>
17 lines
429 B
C#
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; }
|
|
}
|
|
}
|