manager-service/Manager.Interfaces/DTO/SwaggerTokenRequest.cs

15 lines
404 B
C#

namespace Manager.Interfaces.DTO
{
/// <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; }
}
}