zxl
/
CTT
forked from Cal/CTT
1
0
Fork 0
CTT/Unity/Assets/Model/Component/Config/HttpConfig.cs

13 lines
310 B
C#

using MongoDB.Bson.Serialization.Attributes;
namespace ET
{
[BsonIgnoreExtraElements]
public class HttpConfig: AConfigComponent
{
public string Url { get; set; } = "";
public int AppId { get; set; }
public string AppKey { get; set; } = "";
public string ManagerSystemUrl { get; set; } = "";
}
}