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