Experiment with setting up system test docker services

This commit is contained in:
ThompsonNye
2024-08-09 18:39:26 +02:00
parent 07bdf36eb1
commit 17427ca3d0
13 changed files with 590 additions and 13 deletions

View File

@@ -0,0 +1,9 @@
using System.Text.Json.Serialization;
namespace WebApi.Tests.System;
public class TokenResponse
{
[JsonPropertyName("access_token")]
public required string AccessToken { get; init; }
}