24 lines
468 B
C#
24 lines
468 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace KssSmaPlaLib.AutoTest.Command.Definition
|
|
{
|
|
public class CommandEnumUxer
|
|
{
|
|
/// <summary>
|
|
/// UIステップテストコマンド
|
|
/// </summary>
|
|
public enum Command
|
|
{
|
|
None,
|
|
Sleep,
|
|
SetText,
|
|
PushButton,
|
|
TryDbMoshimoshi
|
|
}
|
|
}
|
|
}
|