CarTrackingRuleEngine/RuleEngine/Models/ScopePermission.cs

19 lines
428 B
C#
Raw Normal View History

2025-05-15 10:01:56 +07:00
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; }
}
}