You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
iot/projects/Platform/Application/Models/EditDictionaryCategoryModel.cs

17 lines
421 B

using Infrastructure.Application;
using System.ComponentModel.DataAnnotations;
namespace IoT.Shared.Application.Models
{
[Display(Name ="字典分类")]
public class EditDictionaryCategoryModel : EditModel
{
[Required]
[Display(Name = "名称")]
public string Name { get; set; }
[Required]
[Display(Name = "编号")]
public string Key { get; set; }
}
}