using LangGuan.Command.Model.EntityModel; using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace LangGuan.Command.Model { public class GroupDevice { /// /// 分组名称 /// public string GroupName { get; set; } /// /// 描述 /// public string Description { get; set; } public List items { get; set; } } }