using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Text;
using System.Threading.Tasks;
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; }
}
}