directors-assistant/Config.cs

13 lines
363 B
C#
Raw Permalink Normal View History

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";
2021-07-23 05:37:31 -04:00
public List<Command> commands { get; set; }
public class Command
{
public string name { get; set; }
public string shell { get; set; }
}
}