Files
2023-04-07 13:35:10 -04:00

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