using System.Collections.Generic; namespace Models.Entities { public class Role { public int RoleId { get; set; } public string RoleName { get; set; } = string.Empty; public virtual ICollection Accounts { get; set; } = new HashSet(); } }