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.
17 lines
402 B
17 lines
402 B
using Kean.Domain.Wcs.Models;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Kean.Domain.Wcs.Commands
|
|
{
|
|
/// <summary>
|
|
/// 扫描输出命令
|
|
/// </summary>
|
|
public class ScanOutputsCommand : ICommand
|
|
{
|
|
/// <summary>
|
|
/// 未同步的输出指令
|
|
/// </summary>
|
|
[Output]
|
|
public IEnumerable<Output> UnsyncedOutputs { get; private set; }
|
|
}
|
|
}
|