Files
simapi-net/CoceSdk/CoceAppSdkOption.cs
T
2024-08-19 03:39:35 +08:00

15 lines
333 B
C#

namespace SimApi.CoceSdk;
public class CoceAppSdkOption
{
/**
* 中心API服务器地址
*/
public string ApiEndpoint { get; set; } = "https://api.coce.cc";
public string AuthEndpoint { get; set; } = "https://home.coce.cc";
public string? AppId { get; set; }
public string? AppKey { get; set; }
}