13 lines
310 B
C#
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; } = "";
|
|||
|
}
|
|||
|
}
|