twitch-agent/Config.cs
Adam R. Grey 3f717df1d4 psuedoinitial
actually I had a previous repo but my dumb ass let the real appsettings sneak in
2021-10-24 01:13:07 -04:00

13 lines
337 B
C#

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; }
}
}