using System.ComponentModel.DataAnnotations.Schema; namespace Back.Data.Models { public class Permission { public int ID { get; set; } public int ParentID { get; set; } public string Title { get; set; } #region Navigation public virtual ICollection RolUsers { get; set; } #endregion } }