22 lines
419 B
C#
22 lines
419 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
#nullable disable
|
|
|
|
namespace RuleEngine.Models
|
|
{
|
|
public partial class Scope
|
|
{
|
|
public Scope()
|
|
{
|
|
Users = new HashSet<User>();
|
|
}
|
|
|
|
public int Id { get; set; }
|
|
public string Name { get; set; }
|
|
public string AllowedRoute { get; set; }
|
|
|
|
public virtual ICollection<User> Users { get; set; }
|
|
}
|
|
}
|