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

14 lines
363 B
C#
Raw Normal View History

2023-09-07 00:06:37 +08:00
using System.Collections.Generic;
using MongoDB.Bson.Serialization.Attributes;
using MongoDB.Bson.Serialization.Options;
namespace ET;
public class CDKComponent:Entity
{
public int version;
[BsonDictionaryOptions(DictionaryRepresentation.ArrayOfArrays)]
public Dictionary<string,long> nameList = new();
public HashSet<string> gotList = new();
}