13 lines
358 B
C#
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();
|
|
}
|
|
} |