manager-service/ManagerService/DTOs/SwaggerTokenRequest.cs
2025-03-06 17:39:08 +01:00

15 lines
401 B
C#

namespace ManagerService.DTOs
{
/// <summary>
/// Swagger test client authentication data
/// </summary>
public class SwaggerTokenRequest
{
public string grant_type { get; set; }
public string username { get; set; }
public string password { get; set; }
public string client_id { get; set; }
public string client_secret { get; set; }
}
}