mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-07-15 23:37:44 +08:00

--HG-- extra : convert_revision : svn%3A5ff7c347-ad56-4c35-b696-ccb81de16e03/trunk%4039504
11 lines
284 B
C#
11 lines
284 B
C#
using System.ComponentModel.DataAnnotations;
|
|
using Orchard.Mvc.ViewModels;
|
|
|
|
namespace Orchard.Roles.ViewModels {
|
|
public class RoleEditViewModel : AdminViewModel {
|
|
public int Id { get; set; }
|
|
[Required]
|
|
public string Name { get; set; }
|
|
}
|
|
}
|