15 lines
429 B
C#
15 lines
429 B
C#
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace WorkFlowCheck.DL.Entities
|
|
{
|
|
public class User
|
|
{
|
|
public int Id { get; set; }
|
|
public string Email { get; set; } = null!;
|
|
public string FirstName { get; set; } = null!;
|
|
public string LastName { get; set; } = null!;
|
|
public string UserName { get; set; } = null!;
|
|
public string PasswordHash { get; set; }
|
|
}
|
|
}
|