Merge pull request #145 from fileman/ImprovedRecycleBin

Improved recycle bin
This commit is contained in:
Shaun Walker
2019-10-22 12:31:20 -04:00
committed by GitHub
6 changed files with 193 additions and 33 deletions

View File

@ -16,7 +16,11 @@ namespace Oqtane.Models
public DateTime CreatedOn { get; set; }
public string ModifiedBy { get; set; }
public DateTime ModifiedOn { get; set; }
[NotMapped]
public string DeletedBy { get; set; }
[NotMapped]
public DateTime? DeletedOn { get; set; }
[NotMapped]
public bool IsDeleted { get; set; }