using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace xUnitRevit { /// /// Simple configuration file for lazy developers /// public class Configuration { public List startupAssemblies { get; set; } = new List(); public bool autoStart { get; set; } = false; } }