using System.ComponentModel.DataAnnotations; namespace FJPSite.Data.Authorisation; public class Feature { [Key] public int Id { get; set; } [Required] public required string Name { get; set; } public ICollection Actions { get; set; } = new List(); public ICollection Modules { get; set; } = new List(); }