DBComponent.cs 323 B

123456789101112131415
  1. using MongoDB.Driver;
  2. namespace ET.Server
  3. {
  4. /// <summary>
  5. /// 用来缓存数据
  6. /// </summary>
  7. public class DBComponent: Entity, IAwake<string, string, int>, IDestroy
  8. {
  9. public const int TaskCount = 32;
  10. public MongoClient mongoClient;
  11. public IMongoDatabase database;
  12. }
  13. }