22 lines
604 B
C#
22 lines
604 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace OFBButte.Entities
|
|
{
|
|
public class User
|
|
{
|
|
public int Id { get; set; }
|
|
public string Email { get; set; }
|
|
public string Password { get; set; }
|
|
public DateTime? EmailVerifiedDate { get; set; }
|
|
|
|
public DateTime CreatedDate { get; set; }
|
|
public DateTime? DeletedDate { get; set; }
|
|
|
|
public Profile Profile { get; set; }
|
|
public EmailVerificationCode EmailVerificationCode { get; set; }
|
|
public PasswordResetCode PassswordResetCode { get; set; }
|
|
}
|
|
}
|