Files
WorkFlowCheck/src/WorkFlowCheck.DL/Entities/User.cs
T
2025-01-21 15:52:30 +01:00

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; }
}
}