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

13 lines
358 B
C#

using System.Collections.Generic;
using MongoDB.Bson.Serialization.Attributes;
using MongoDB.Bson.Serialization.Options;
namespace ET
{
public class ServerItemLimitComponent:Entity
{
[BsonDictionaryOptions(DictionaryRepresentation.ArrayOfArrays)]
//id,count
public Dictionary<int, int> currentItemCountDic = new();
}
}