DocSpace-client/common/ASC.Core.Common/EF/Model/User/UserSecurity.cs

20 lines
434 B
C#
Raw Normal View History

2019-11-25 09:49:12 +00:00
using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace ASC.Core.Common.EF
{
[Table("core_usersecurity")]
public class UserSecurity
{
public int Tenant { get; set; }
[Key]
public Guid UserId { get; set; }
public string PwdHash { get; set; }
public string PwdHashSha512 { get; set; }
}
}