using System.Collections.Generic; namespace FileTime.Avalonia.Configuration { public class ProgramsConfiguration { public List DefaultEditorPrograms { get; set; } = new(); public List EditorPrograms { get; set; } = new(); } }