22 lines
498 B
C#
22 lines
498 B
C#
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
|
|
{
|
|
/// <summary>
|
|
/// 分组名称
|
|
/// </summary>
|
|
public string GroupName { get; set; }
|
|
/// <summary>
|
|
/// 描述
|
|
/// </summary>
|
|
public string Description { get; set; }
|
|
public List<Device> items { get; set; }
|
|
}
|
|
}
|