using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace RichCreator.Models { /// /// 状态基类 /// public class StateInfoItem { public StateInfoItem(string key, string headerText, string value) { this.Key = key; this.HeaderText = headerText; this.Value = value; } public int Index { get; set; } public string Key { get; set; } public string HeaderText { get; set; } public string Value { get; set; } } }