| 123456789101112131415161718192021 |
- using MongoDB.Bson;
- using MongoDB.Bson.Serialization.Attributes;
- #if !SERVER
- using UnityEngine;
- #endif
- namespace ETModel
- {
- #if !SERVER
- [HideInHierarchy]
- #endif
- public class StartConfig: Entity
- {
- public int AppId { get; set; }
- [BsonRepresentation(BsonType.String)]
- public AppType AppType { get; set; }
- public string ServerIP { get; set; }
- }
- }
|