19 lines
428 B
C#
19 lines
428 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
#nullable disable
|
|
|
|
namespace RuleEngine.Models
|
|
{
|
|
public partial class ScopePermission
|
|
{
|
|
public int Id { get; set; }
|
|
public string Allowed { get; set; }
|
|
public string Filter { get; set; }
|
|
public int? PermissionId { get; set; }
|
|
public int? ScopeId { get; set; }
|
|
|
|
public virtual Permission Permission { get; set; }
|
|
}
|
|
}
|