12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- using MECF.Framework.Common.CommonData;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using System.Xml.Schema;
- using System.Xml.Serialization;
- namespace MECF.Framework.Common.Persistent.Rinse
- {
- public class RinsePersistentValue : NotifiableItem
- {
- #region 内部变量
- /// <summary>
- /// 名称
- /// </summary>
- private string _name;
- /// <summary>
- /// 操作模式
- /// </summary>
- private string _operatingMode;
- /// <summary>
- /// Recipe操作模式
- /// </summary>
- private string _recipeOperatingMode;
- #endregion
- /// <summary>
- /// 名称
- /// </summary>
- [XmlAttribute(AttributeName = "Name", Form = XmlSchemaForm.Unqualified, DataType = "string")]
- public string Name { get { return _name; } set { _name = value; InvokePropertyChanged(nameof(Name)); } }
- /// <summary>
- /// 操作模式
- /// </summary>
- public string OperatingMode { get { return _operatingMode; } set { _operatingMode = value; InvokePropertyChanged(nameof(OperatingMode)); } }
- /// <summary>
- /// Recipe操作模式
- /// </summary>
- public string RecipeOperatingMode { get { return _recipeOperatingMode; } set { _recipeOperatingMode = value; InvokePropertyChanged(nameof(RecipeOperatingMode)); } }
- }
- }
|