mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-02 12:07:44 +08:00
db64810a20
* refactor: change confirm return * feat(module: drawer): add DrawerService * fix: change type EventCallback in configs to Func * fix: typo Co-authored-by: ElderJames <shunjiey@hotmail.com>
17 lines
374 B
C#
17 lines
374 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using Microsoft.AspNetCore.Components;
|
|
|
|
namespace AntDesign
|
|
{
|
|
public abstract class TemplateComponentBase<TConfig> : AntComponentBase
|
|
{
|
|
/// <summary>
|
|
/// The component Parameter object
|
|
/// </summary>
|
|
[Parameter]
|
|
public TConfig Config { get; set; }
|
|
}
|
|
}
|