directors-assistant/Config.cs
2021-12-17 06:52:47 -05:00

14 lines
410 B
C#

using System.Collections.Generic;
public class Config
{
public string name { get; set; } = "guy who didn't configure";
public string bootstrap_servers { get; set; } = "localhost:9092";
public List<Command> commands { get; set; }
public class Command
{
public string name { get; set; }
public string shell { get; set; }
public List<string> args { get; set; }
}
}