LiftInfo.cs
482 字节
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DeviceLibrary.lift
{
public class LiftInfo
{
public LiftStatus LiftStatus { get; set; }
/// <summary>
/// 占用电梯的小车名
/// </summary>
public List<string> Agvs { get; set; } = new List<string>();
public LiftInfo()
{
LiftStatus = new LiftStatus();
}
}
}