API oldaláról sokminden
This commit is contained in:
@@ -1,8 +1,9 @@
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
using WorkFlowCheck.DL.Interfaces;
|
||||
|
||||
namespace WorkFlowCheck.DL.Entities
|
||||
{
|
||||
public class User
|
||||
public class User:IAuditableEntity,ISoftDeletableEntity
|
||||
{
|
||||
public int Id { get; set; }
|
||||
public string Email { get; set; } = null!;
|
||||
@@ -10,5 +11,10 @@ namespace WorkFlowCheck.DL.Entities
|
||||
public string LastName { get; set; } = null!;
|
||||
public string UserName { get; set; } = null!;
|
||||
public string? PasswordHash { get; set; } = null;
|
||||
public DateTime LastModAt { get ; set ; }
|
||||
public string LastModBy { get ; set ; }
|
||||
public DateTime CreatedAt { get ; set ; }
|
||||
public string CreatedBy { get ; set ; }
|
||||
public bool IsDeleted { get ; set ; }
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user