123456789101112131415161718192021222324252627282930313233343536373839 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Runtime.Serialization;
- using System.Text;
- using System.Threading.Tasks;
- namespace FWindSoft.Wpf.History
- {
- /// <summary>
- /// 控件保存值基类
- /// </summary>
- [DataContract]
- public sealed class ControlSaveItem
- {
- public ControlSaveItem()
- {
- }
- public ControlSaveItem(string name, string type, string controlId, string value)
- {
- ControlName = name;
- ControlType = type;
- ControlId = controlId;
- ControlValue = value;
- }
- [DataMember]
- public string ControlName { get; set; }
- [DataMember]
- public string ControlId { get; set; }
- [DataMember]
- public string ControlType { get; set; }
- [DataMember]
- public string ControlValue { get; set; }
- }
- }
|