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