mycroforge/MycroForge.CLI/ProjectConfig.cs

7 lines
181 B
C#

namespace MycroForge.CLI;
public class ProjectConfig
{
public string Entrypoint { get; set; } = string.Empty;
public List<string> Features { get; set; } = new();
}