ant-design-blazor/components/core/Base/TemplateComponentBase.cs
zxyao db64810a20 feat: add DrawerService (#241)
* 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>
2020-06-23 15:19:44 +08:00

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; }
}
}