using System.Windows.Media; namespace XFEToolBox.Utilities; public class FoldBlockDecSpan(string text, string title, List decTextList, Color color, Color backgroundColor) : DecTextSpan(text, color, backgroundColor) { public string Title { get; set; } = title; public List DecTextList { get; set; } = decTextList; }