18 lines
394 B
C#
18 lines
394 B
C#
using zero.Core;
|
|
using zero.Core.Identity;
|
|
|
|
namespace zero.Web.Defaults
|
|
{
|
|
public class ModulePermissions : PermissionCollection
|
|
{
|
|
public ModulePermissions()
|
|
{
|
|
Alias = Constants.PermissionCollections.Modules;
|
|
Label = "@permission.collections.modules";
|
|
Description = "@permission.collections.modules_description";
|
|
|
|
// Items get added at runtime
|
|
}
|
|
}
|
|
}
|