using System; using System.Collections.Generic; using System.Text; using Microsoft.AspNetCore.Components; namespace AntDesign { public abstract class TemplateComponentBase : AntComponentBase { /// /// The options that allow you to pass in templates from the outside /// [Parameter] public TComponentOptions Options { get; set; } } }