MachineDeviceErrorStore.cs 316 B

1234567891011121314
  1. using Prism.Mvvm;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace SKMC.Api.Machine.Config
  8. {
  9. public abstract class MachineDeviceErrorStore : BindableBase
  10. {
  11. public abstract string GetAxisErrorInfo(short axisNo);
  12. }
  13. }