Files
Common.Wpf/HtmlTextBlock/TextLine.cs
2014-04-30 17:33:21 -04:00

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>();
}
}
}