BotSharp/src/Infrastructure/BotSharp.Abstraction/Google/Settings/GoogleApiSettings.cs
2024-04-03 14:51:07 -05:00

23 lines
530 B
C#

namespace BotSharp.Abstraction.Google.Settings;
public class GoogleApiSettings
{
public string ApiKey { get; set; }
public MapSettings Map { get; set; }
public YoutubeSettings Youtube { get; set; }
}
public class MapSettings
{
public string Endpoint { get; set; }
public string Components { get; set; }
}
public class YoutubeSettings
{
public string Endpoint { get; set; }
public string Part { get; set; }
public string RegionCode { get; set; }
public IList<string> Channels { get; set; }
}