using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using Newtonsoft.Json.Linq;
using System;
public class missCourseItem
{
///
/// 任务id
///
public int missCardId { get; set; }
///
/// 这个id== 背包里的uid;实际就是为了区别多个相同的卡的;默认为0;一旦这个卡被激活就有固定值了
///
public int indexId { get; set; }
///
/// 任务状态
///
public int type { get; set; }
public void Initlize(JToken data)
{
//Utils.LoadObject(token, this);
Utils.LoadObject(data, this);
}
}