summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/UI/AttrFrameParam.cs
blob: a90db93651d04a3ebe7cb64cfd709e800de6cd94 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
using System;
using System.Collections.Generic;

namespace XMainClient.UI
{
	internal class AttrFrameParam
	{
		public string Title { get; set; }

		public List<AttrParam> AttrList
		{
			get
			{
				return this.m_AttrList;
			}
		}

		private List<AttrParam> m_AttrList = new List<AttrParam>();

		public void Clear()
		{
			this.m_AttrList.Clear();
			this.Title = string.Empty;
		}
	}
}