mirror of
https://bitbucket.org/myhomie/mycorerepository.git
synced 2025-12-06 17:51:20 +00:00
15 lines
403 B
C#
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; }
|
|
}
|
|
}
|