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

10 lines
223 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; }
2019-05-28 09:40:37 +00:00
}
}