19 lines
453 B
C#
19 lines
453 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace ET
|
|
{
|
|
public class Ranking:Entity
|
|
{
|
|
|
|
public List<NumericComponent> unitList;
|
|
/// <summary>
|
|
/// key = numType,value = unitId
|
|
/// </summary>
|
|
public UnOrderMultiMap<int, NumericComponent> unitDic = new UnOrderMultiMap<int, NumericComponent>();
|
|
|
|
public List<(long, long)> coinList = new List<(long, long)>();
|
|
}
|
|
}
|