VpwRinseStep.cs 802 B

1234567891011121314151617181920212223242526
  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. #endregion
  16. #region 属性
  17. [JsonProperty]
  18. public int DurationSeconds { get { return _durationSeconds; } set { _durationSeconds = value; InvokePropertyChanged(nameof(DurationSeconds)); } }
  19. [JsonProperty]
  20. public int RotationSpeed { get { return _rotationSpeed; } set { _rotationSpeed = value; InvokePropertyChanged(nameof(RotationSpeed)); } }
  21. #endregion
  22. }
  23. }