using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace LangGuan.Command.Model.EntityModel { /// /// /// public class Group : BaseModel { /// /// 分组名称 /// public string GroupName { get; set; } /// /// 描述 /// public string Description { get; set; } /// /// 设备列表 /// public IEnumerable DeviceIds { get; set; } } }