twitch-agent/Config.cs

13 lines
337 B
C#
Raw Permalink Normal View History

namespace twitcher
{
public class Config
{
public string kafka_bootstrap { get; set; }
public string kafka_name { get; set; }
public int port { get; set; }
public string clientId { get; set; }
public string clientSecret { get; set; }
public string public_uri { get; set; }
}
}