Local changes

This commit is contained in:
Emma [it/its]@Rory&
2025-10-05 21:34:40 +02:00
parent a632666203
commit abb1b570a4
73 changed files with 2067 additions and 64 deletions
@@ -0,0 +1,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;
}