using System; using System.Collections.Generic; namespace XMainClient.UI { internal class AttrFrameParam { public string Title { get; set; } public List AttrList { get { return this.m_AttrList; } } private List m_AttrList = new List(); public void Clear() { this.m_AttrList.Clear(); this.Title = string.Empty; } } }