jy-plc/Command/Model/GroupDevice.cs

22 lines
498 B
C#
Raw Normal View History

2024-07-24 13:30:21 +00:00
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; }
}
}