namespace Manager.Interfaces.DTO { /// /// Swagger test client authentication data /// 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; } } }