using Rs.Motion;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Rs.MotionPlat.Commom
{
///
/// 轴运动结果
///
public class MoveResult
{
///
/// 是否报警
///
public bool IsAlarm { get; set; }
///
/// 是否停止
///
public bool IsStop { get; set; }
public ErrorCode Result { get; set; }
}
}