using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class IObjectConf
{
///
/// obj的主键,索引
///
private string objKey;
///
/// 是否已下载
///
private bool isDownLoad;
///
/// icon的路径
///
private string iconPath;
///
/// 名称
///
private string name;
}