CTT/Server/Model/Game/Entity/UI/Shop.cs

14 lines
366 B
C#

using Cal.DataTable;
using System;
using System.Collections.Generic;
using System.Text;
namespace ET
{
public class Shop:Entity
{
public UnOrderMultiMap<int, (int,MarketBase)> MarketPeriodDic = new UnOrderMultiMap<int, (int,MarketBase)>();
public UnOrderMultiMap<int, ShopBase> ShopPageDic = new UnOrderMultiMap<int, ShopBase>();
}
}