DocSpace-buildtools/web/ASC.Web.Api/Models/AuthModel.cs

19 lines
510 B
C#

namespace ASC.Web.Api.Models
{
public class AuthModel
{
public string UserName { get; set; }
public string Password { get; set; }
public string PasswordHash { get; set; }
public string Provider { get; set; }
public string AccessToken { get; set; }
public string SerializedProfile { get; set; }
public string Code { get; set; }
}
public class MobileModel
{
public string MobilePhone { get; set; }
}
}