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

14 lines
415 B
C#
Raw Normal View History

2019-05-28 09:40:37 +00:00
namespace ASC.Web.Api.Models
{
public class AuthModel
{
public string UserName { get; set; }
public string Password { get; set; }
2020-09-30 14:16:48 +00:00
public string PasswordHash { get; set; }
2021-02-19 16:16:08 +00:00
public string Provider { get; set; }
public string AccessToken { get; set; }
public string SerializedProfile { get; set; }
2021-04-26 11:56:38 +00:00
public string Code { get; set; }
2019-05-28 09:40:37 +00:00
}
}