using MongoDB.Bson.Serialization.Attributes; using System; using System.Collections.Generic; using System.Runtime.CompilerServices; using System.Text; namespace ET { public class BossTime:Entity { /// /// key = id,value = time /// [BsonDictionaryOptions(MongoDB.Bson.Serialization.Options.DictionaryRepresentation.ArrayOfArrays)] public Dictionary TimeDic = new Dictionary(); } }