山东雷驰
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

18 lines
416 B

using Kean.Domain.Wcs.Models;
using System.Collections.Generic;
namespace Kean.Domain.Wcs.Commands
{
/// <summary>
/// 监控站台变化命令
/// </summary>
public class ScanStationCommand : ICommand
{
/// <summary>
/// 输入指令
/// </summary>
[Output]
public IEnumerable<StationModel> UnsyncedStationModels
{ get; private set; }
}
}