using System.Collections.ObjectModel; namespace ChrisKaczor.Wpf.Controls { public class TextLine { public Collection FragmentList { get; } public TextLine() { FragmentList = new Collection(); } } }