using System; using System.Collections.Generic; using System.Linq; using System.Runtime.Serialization; using System.Text; using System.Threading.Tasks; namespace FWindSoft.Wpf.History { /// /// 控件保存值基类 /// [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; } } }