HttpConfig.cs 316 字节
Newer Older
T
tanghai 已提交
1 2
using MongoDB.Bson.Serialization.Attributes;

3
namespace ETModel
T
tanghai 已提交
4 5 6 7 8 9 10 11 12 13
{
	[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; } = "";
	}
}