summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/MentorshipTaskInfo.cs
blob: 0637efef97dc383faf2b9b786e1125cfc2e517dc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
using System;
using System.Collections.Generic;

namespace XMainClient
{
	public class MentorshipTaskInfo
	{
		public int taskID;

		public int completeProgress;

		public int completeTime;

		public List<MentorshipTaskStatus> taskStatusList = new List<MentorshipTaskStatus>();
	}
}