public string ToPlainText() => Entries.Aggregate(string.Empty, (acc, entry) => { acc += entry.ToString(); return(acc); });