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/IoTCenter/Application/Domain/NodeCategory.cs

23 lines
634 B

using Infrastructure.Domain;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
namespace IoTCenter.Application.Domain
{
[Display(Name = "节点类型")]
public class NodeCategory : BaseEntity
{
[Display(Name = "分类名称")]
public string Name { get; set; }
public string Number { get; set; }
[Display(Name = "模板")]
public string Template { get; set; }
[Display(Name = "序号")]
public int DisplayOrder { get; set; }
public List<NodeCategoryNode> CategoryNodes { get; set; } = new List<NodeCategoryNode>();
}
}