mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-15 01:11:52 +08:00
19 lines
418 B
C#
19 lines
418 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace AntBlazor
|
|||
|
{
|
|||
|
public readonly struct ComponentRenderedText
|
|||
|
{
|
|||
|
public ComponentRenderedText(int componentId, IEnumerable<string> tokens)
|
|||
|
{
|
|||
|
ComponentId = componentId;
|
|||
|
Tokens = tokens;
|
|||
|
}
|
|||
|
|
|||
|
public int ComponentId { get; }
|
|||
|
|
|||
|
public IEnumerable<string> Tokens { get; }
|
|||
|
}
|
|||
|
}
|