Files
2023-03-09 18:25:14 +01:00

14 lines
313 B
C#

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