21 lines
354 B
C#
21 lines
354 B
C#
using MongoDB.Bson;
|
|
using MongoDB.Bson.Serialization.Attributes;
|
|
#if !SERVER
|
|
using UnityEngine;
|
|
#endif
|
|
|
|
namespace ET
|
|
{
|
|
#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; }
|
|
}
|
|
} |