first commit
This commit is contained in:
20
Complex.Domain/Entities/UserToken.cs
Normal file
20
Complex.Domain/Entities/UserToken.cs
Normal file
@@ -0,0 +1,20 @@
|
||||
using Complex.Domain.Commons;
|
||||
|
||||
namespace Complex.Domain.Entities
|
||||
{
|
||||
public class UserToken : BaseEntity
|
||||
{
|
||||
public string TokenHash { get; set; }
|
||||
public DateTime TokenExp { get; set; }
|
||||
public string RefreshToken { get; set; }
|
||||
public DateTime RefreshTokenExp { get; set; }
|
||||
|
||||
public string MobileModel { get; set; }
|
||||
|
||||
public Person Person { get; set; }
|
||||
/// <summary>
|
||||
/// mobileNumber
|
||||
/// </summary>
|
||||
public string PersonId { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user