Granular permission back end done
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
using FJPSite.Interfaces;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
namespace FJPSite.Data
|
||||
{
|
||||
public class SoftDeleteEntityBase : ISoftDeleteEntity
|
||||
{
|
||||
[Required]
|
||||
public bool IsActive { get; set; } = true;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user