Granular permission back end done
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
namespace FJPSite.Data.Authorisation;
|
||||
|
||||
public class Module : SoftDeleteEntityBase
|
||||
{
|
||||
[Key]
|
||||
public int Id { get; set; }
|
||||
|
||||
[Required]
|
||||
public required string Name { get; set; }
|
||||
|
||||
public ICollection<ModuleFeature> Features { get; set; } = new List<ModuleFeature>();
|
||||
}
|
||||
Reference in New Issue
Block a user