using System; using System.Collections.Generic; using System.Text; using Microsoft.AspNetCore.Components; namespace AntDesign { public abstract class TemplateComponentBase : AntComponentBase { /// /// The component Parameter object /// [Parameter] public TConfig Config { get; set; } } }