DocSpace-buildtools/web/ASC.Web.Api/ApiModels/RequestsDto/AuthDto.cs

20 lines
534 B
C#
Raw Normal View History

2022-03-01 08:59:06 +00:00
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 bool Session { get; set; }
}
public class MobileModel
{
public string MobilePhone { get; set; }
}
}