mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-05 13:37:35 +08:00
20 lines
409 B
C#
20 lines
409 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace AntDesign
|
|
{
|
|
public class ComponentRenderedText
|
|
{
|
|
public ComponentRenderedText(int componentId, IEnumerable<string> tokens)
|
|
{
|
|
ComponentId = componentId;
|
|
Tokens = tokens;
|
|
}
|
|
|
|
public int ComponentId { get; }
|
|
|
|
public IEnumerable<string> Tokens { get; }
|
|
}
|
|
}
|