PulsePowerSupplyStep.cs 878 B

123456789101112131415161718192021222324252627
  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 PulsePowerSupplyStep : NotifiableItem
  11. {
  12. #region 内部变量
  13. private double _durationHundredsMicroSeconds;
  14. private string _type;
  15. #endregion
  16. #region 属性
  17. [JsonProperty]
  18. public double DurationHundredsMicroSeconds { get { return _durationHundredsMicroSeconds; }
  19. set { _durationHundredsMicroSeconds = value;InvokePropertyChanged(nameof(DurationHundredsMicroSeconds)); } }
  20. [JsonProperty]
  21. public string Type { get { return _type; }set { _type = value;InvokePropertyChanged(nameof(Type)); } }
  22. #endregion
  23. }
  24. }