2026-05-10 20:24:08 +08:00
|
|
|
namespace SimApi.Configurations;
|
|
|
|
|
|
|
|
|
|
public class SimApiHttpClientOptions
|
|
|
|
|
{
|
|
|
|
|
public string Server { get; set; } = string.Empty;
|
|
|
|
|
public string AppId { get; set; } = string.Empty;
|
|
|
|
|
public string AppKey { get; set; } = string.Empty;
|
|
|
|
|
}
|