IWaferCommandModel.cs 320 B

1234567891011121314151617
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using System.Windows.Input;
  7. namespace Bolt.Toolkit.Wpf.Data
  8. {
  9. public interface IWaferCommandModel
  10. {
  11. ICommand CreateDeleteWaferCommand { get; set; }
  12. ICommand MoveWaferCommand { get; set; }
  13. }
  14. }