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.
19 lines
416 B
19 lines
416 B
3 months ago
|
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; }
|
||
|
}
|
||
|
}
|