using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Tango.Settings; namespace Tango.FSE.LogViewer.UI { public class LogViewerSettings : SettingsBase { public bool WrapLines { get; set; } public List RecentFiles { get; set; } public LogViewerSettings() { RecentFiles = new List(); } } }