mycorerepository/MyCore.Interfaces/DTO/SwaggerTokenRequest.cs
2020-12-16 21:35:51 +01:00

15 lines
403 B
C#

namespace MyCore.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; }
}
}