summary refs log tree commit diff
path: root/extra/admin-api/Utilities/Spacebar.AdminApi.TestClient/Services/Config.cs
blob: 3b045a4981ed20dedeecc83e97030cf32e28a90e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
using System.Text.Json.Serialization;

namespace Spacebar.AdminApi.TestClient.Services;

public class Config {
    [JsonPropertyName("api_url")]
    public string ApiUrl { get; set; } = "http://localhost:3001";
    
    [JsonPropertyName("gateway_url")]
    public string GatewayUrl { get; set; } = "http://localhost:3002";
    
    [JsonPropertyName("cdn_url")]
    public string CdnUrl { get; set; } = "http://localhost:3003";
    
    [JsonPropertyName("admin_url")]
    public string AdminUrl { get; set; } = "http://localhost:5112";
    
    [JsonPropertyName("access_token")]
    public string? AccessToken { get; set; } = string.Empty;
}