namespace Admin.Core.Service.Admin.Role.Input
{
///
/// 添加
///
public class RoleAddInput
{
///
/// 名称
///
public string Name { get; set; }
///
/// 编码
///
public string Code { get; set; }
///
/// 说明
///
public string Description { get; set; }
///
/// 启用
///
public bool Enabled { get; set; }
}
}