mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-10-15 03:25:23 +08:00
12 lines
384 B
C#
12 lines
384 B
C#
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using Orchard.Security.Permissions;
|
|
|
|
namespace Orchard.Roles.ViewModels {
|
|
public class RoleCreateViewModel {
|
|
[Required, StringLength(255)]
|
|
public string Name { get; set; }
|
|
public IDictionary<string, IEnumerable<Permission>> FeaturePermissions { get; set; }
|
|
}
|
|
}
|