Infrastructure/OpenAuth.App/RoleManager/Request/ModuleElementWithRole.cs

16 lines
352 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OpenAuth.App.Request
{
public class ModuleElementWithRole
{
public long RoleId { get; set; }
public List<string> ModuleIds { get; set; }
public List<string> ElementIds { get; set; }
}
}