ant-design-blazor/components/core/Base/TemplateComponentBase.cs

17 lines
429 B
C#
Raw Normal View History

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