123456789101112131415161718192021222324252627 |
- using MECF.Framework.Common.CommonData;
- using Newtonsoft.Json;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace MECF.Framework.Common.RecipeCenter
- {
- public class PulsePowerSupplyStep : NotifiableItem
- {
- #region 内部变量
- private double _durationHundredsMicroSeconds;
- private string _type;
- #endregion
- #region 属性
- [JsonProperty]
- public double DurationHundredsMicroSeconds { get { return _durationHundredsMicroSeconds; }
- set { _durationHundredsMicroSeconds = value;InvokePropertyChanged(nameof(DurationHundredsMicroSeconds)); } }
- [JsonProperty]
- public string Type { get { return _type; }set { _type = value;InvokePropertyChanged(nameof(Type)); } }
- #endregion
- }
- }
|