using System.Collections.Generic; namespace Avalonia.Media.TextFormatting { public class TextLineBreak { public TextLineBreak(TextEndOfLine textEndOfLine) { TextEndOfLine = textEndOfLine; } public TextLineBreak(IReadOnlyList remainingCharacters) { RemainingCharacters = remainingCharacters; } /// /// Get the /// public TextEndOfLine? TextEndOfLine { get; } /// /// Get the remaining shaped characters that were split up by the during the formatting process. /// public IReadOnlyList? RemainingCharacters { get; } } }