directors-assistant/Config.cs
2021-07-23 04:18:21 -04:00

14 lines
409 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 class Command
{
public string name { get; set; }
public string shell { get; set; }
}
public List<Command> commands { get; set; }
public List<Command> checks { get; set; }
}