9 lines
251 B
C#
9 lines
251 B
C#
namespace FJPSite.Models;
|
|
|
|
public class FeaturePermissionModel
|
|
{
|
|
public int FeatureId { get; set; }
|
|
public string FeatureName { get; set; }
|
|
public List<ActionPermissionModel> Actions { get; set; } = new List<ActionPermissionModel>();
|
|
}
|