8 lines
241 B
C#
8 lines
241 B
C#
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;
|
|
} |