7 lines
181 B
C#
7 lines
181 B
C#
namespace MicroForge.CLI;
|
|
|
|
public class ProjectConfig
|
|
{
|
|
public string Entrypoint { get; set; } = string.Empty;
|
|
public List<string> Features { get; set; } = new();
|
|
} |