CeramicProjectTool/Model/ResultModel/RulePermissonResult.cs

21 lines
487 B
C#
Raw Normal View History

2024-05-22 17:19:22 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CeramicProjectTool.Model.ResultModel
{
public class RulePermissonResult
{
public int PermissonId { get; set; }
public int RuleId { get; set; }
public int FeatureId { get; set; }
public string RuleName { get; set; }
public string FeatureName { get; set; }
public bool IsEnabled { get; set; }
}
}