mirror of
https://github.com/ckaczor/ChrisKaczor.Wpf.Controls.HtmlTextBlock.git
synced 2026-01-13 17:22:31 -05:00
Initial commit
This commit is contained in:
14
TextLine.cs
Normal file
14
TextLine.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
using System.Collections.ObjectModel;
|
||||
|
||||
namespace ChrisKaczor.Wpf.Controls
|
||||
{
|
||||
public class TextLine
|
||||
{
|
||||
public Collection<TextFragment> FragmentList { get; }
|
||||
|
||||
public TextLine()
|
||||
{
|
||||
FragmentList = new Collection<TextFragment>();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user