18 lines
479 B
C#
Executable File
18 lines
479 B
C#
Executable File
using MongoDB.Bson.Serialization.Attributes;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Runtime.CompilerServices;
|
|
using System.Text;
|
|
|
|
namespace ET
|
|
{
|
|
public class BossTime:Entity
|
|
{
|
|
/// <summary>
|
|
/// key = id,value = time
|
|
/// </summary>
|
|
[BsonDictionaryOptions(MongoDB.Bson.Serialization.Options.DictionaryRepresentation.ArrayOfArrays)]
|
|
public Dictionary<int, long> TimeDic = new Dictionary<int, long>();
|
|
}
|
|
}
|