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

19 lines
482 B
C#
Raw Normal View History

2022-03-01 10:58:02 +00:00
namespace ASC.Web.Api.ApiModel.RequestsDto;
public class AuthDto
2022-03-01 08:59:06 +00:00
{
2022-03-01 10:58:02 +00:00
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; }
}
2022-03-01 08:59:06 +00:00
2022-03-01 10:58:02 +00:00
public class MobileDto
{
public string MobilePhone { get; set; }
2022-03-01 08:59:06 +00:00
}