summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XUtliPoolLib/ActivityTabInfo.cs
blob: 03e4719734f7fcb9c27a577d5b7161892ddfa590 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
using System;

namespace XUtliPoolLib
{
	public class ActivityTabInfo
	{
		public string activityName = "";

		public string tabName = "";

		public string tabIcon = "";

		public bool tabShow = false;

		public bool redPointShow = false;

		public string moduleName = "";

		public int sysID = 0;

		public int sort = 999;
	}
}