using System.Collections.Generic;
namespace xUnitRevit
{
///
/// Simple configuration file for lazy developers
///
public class Configuration
{
public IList StartupAssemblies { get; set; } = new List();
public bool AutoStart { get; set; } = false;
}
}