director/Config.cs
Adam R. Grey a6c03261f9 theoretically seems to read schedule as occurences properly
but for some reason 08-23 is showing up twice. so if I just assume that sabreDAV and/or nextcloud have some weird workaround, le'ts just let the 23rd roll around and never speak of this again >_>
2021-08-19 08:44:38 -04:00

17 lines
591 B
C#

using System.Collections.Generic;
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; }
}
}