zxl
/
CTT
forked from Cal/CTT
1
0
Fork 0
CTT/Server/Model/Game/Entity/UI/ConsignmentComponent.cs

17 lines
463 B
C#
Executable File

using System;
using System.Collections.Generic;
using System.Text;
namespace ET
{
public class ConsignmentComponent:Entity
{
public static ConsignmentComponent Instance{ get; set; }
/// <summary>
/// 根据寄售物品Id
/// </summary>
public Dictionary<long, Consignment> ConsignmentDic = new Dictionary<long, Consignment>();
public Dictionary<long, int> CountDic= new Dictionary<long, int>();
}
}