director/Config.cs

17 lines
591 B
C#
Raw Normal View History

using System.Collections.Generic;
2021-08-18 23:16:57 -04:00
namespace director
{
public class Config
{
public string kafka_bootstrap { get; set; }
public string call_for_humans_discord_webhook { get; set; }
public string webdav_uri { get; set; }
public string webdav_username { get; set; }
public string webdav_password { get; set; }
public string calendar_youtube { get; set; }
public string calendar_twitch { get; set; }
public string calendar_other { get; set; }
public Dictionary<string, string> phase_handlers { get; set; }
2021-08-18 23:16:57 -04:00
}
}