using System;
using System.Collections.Generic;
using System.Text;
namespace WMS.Web.Core.Dto.Login
{
///
/// 登录请求对象
///
public class LoginRequest
{
///
/// 账号
///
public string UserName { get; set; }
///
/// 密码
///
public string Password { get; set; }
}
public class LoginAuthorizeRequest : LoginRequest
{
///
///
///
public string ClientId { get; set; }
///
///
///
public string ClientSecret { get; set; }
///
///
///
public string GrantType { get; set; }
public string Scope { get; set; }
}
}