21 lines
487 B
C#
21 lines
487 B
C#
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; }
|
|
|
|
}
|
|
}
|