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
379 B
17 lines
379 B
using Kean.Domain.Wcs.Models;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Kean.Domain.Wcs.Commands
|
|
{
|
|
/// <summary>
|
|
/// 扫描输入命令
|
|
/// </summary>
|
|
public class ScanInputsCommand : ICommand
|
|
{
|
|
/// <summary>
|
|
/// 输入指令
|
|
/// </summary>
|
|
[Output]
|
|
public IEnumerable<Input> Inputs { get; private set; }
|
|
}
|
|
}
|