StartConfig.cs 359 B

123456789101112131415161718192021
  1. using MongoDB.Bson;
  2. using MongoDB.Bson.Serialization.Attributes;
  3. #if !SERVER
  4. using UnityEngine;
  5. #endif
  6. namespace ETModel
  7. {
  8. #if !SERVER
  9. [HideInHierarchy]
  10. #endif
  11. public class StartConfig: Entity
  12. {
  13. public int AppId { get; set; }
  14. [BsonRepresentation(BsonType.String)]
  15. public AppType AppType { get; set; }
  16. public string ServerIP { get; set; }
  17. }
  18. }