mirror of
https://github.com/ckaczor/ChrisKaczor.Wpf.Controls.HtmlTextBlock.git
synced 2026-01-13 17:22:31 -05:00
15 lines
287 B
C#
15 lines
287 B
C#
using System.Collections.ObjectModel;
|
|
|
|
namespace ChrisKaczor.Wpf.Controls
|
|
{
|
|
public class TextLine
|
|
{
|
|
public Collection<TextFragment> FragmentList { get; }
|
|
|
|
public TextLine()
|
|
{
|
|
FragmentList = new Collection<TextFragment>();
|
|
}
|
|
}
|
|
}
|