LiftInfo.cs
385 字节
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; }
public string OccupiedAgv { get; set; } = "";
public LiftInfo()
{
LiftStatus = new LiftStatus();
}
}
}