15 lines
476 B
C#
15 lines
476 B
C#
namespace Chtn.CSharp.SDK.Core
|
|
{
|
|
public class SDKConfig
|
|
{
|
|
public string ApiUrl { get; set; } = "https://api.chatenium.hu";
|
|
public string CdnUrl { get; set; } = "https://cdn.chatenium.hu";
|
|
public string WsUrl { get; set; } = "wss://api.chatenium.hu";
|
|
}
|
|
|
|
public static class EnvironmentConfig
|
|
{
|
|
private static SDKConfig _currentConfig = new SDKConfig();
|
|
public static SDKConfig Get() => _currentConfig;
|
|
}
|
|
} |