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; }
    }
}