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