VpwRinseStep.cs 967 B

1234567891011121314151617181920212223242526272829
  1. using MECF.Framework.Common.CommonData;
  2. using Newtonsoft.Json;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace MECF.Framework.Common.RecipeCenter
  9. {
  10. public class VpwRinseStep : NotifiableItem
  11. {
  12. #region 内部变量
  13. private int _durationSeconds;
  14. private int _rotationSpeed;
  15. private int _index;
  16. #endregion
  17. #region 属性
  18. [JsonProperty]
  19. public int DurationSeconds { get { return _durationSeconds; } set { _durationSeconds = value; InvokePropertyChanged(nameof(DurationSeconds)); } }
  20. [JsonProperty]
  21. public int RotationSpeed { get { return _rotationSpeed; } set { _rotationSpeed = value; InvokePropertyChanged(nameof(RotationSpeed)); } }
  22. [JsonProperty]
  23. public int Index { get { return _index; } set { _index = value; InvokePropertyChanged(nameof(Index)); } }
  24. #endregion
  25. }
  26. }