using System; using System.Collections.Generic; #nullable disable namespace RuleEngine.Models { public partial class Scope { public Scope() { Users = new HashSet(); } public int Id { get; set; } public string Name { get; set; } public string AllowedRoute { get; set; } public virtual ICollection Users { get; set; } } }