director/DirectorConfiguration/Config.cs
Adam R. Grey c4d994f76b rework progress
todo: don't have containers, just have each line be "text" if you want
2021-10-13 09:25:03 -04:00

17 lines
586 B
C#

using System;
using System.Collections.Generic;
namespace DirectorConfiguration
{
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 IEnumerable<string> webdav_calendars { get; set; }
public string workingDirectory { get; set; }
public IEnumerable<ConfigFileLocator> scheduleConfigs { get; set; }
}
}