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

3
namespace ETModel
T
tanghai 已提交
4 5
{
	[BsonIgnoreExtraElements]
T
tanghai 已提交
6
	public class HttpConfig: AConfigComponent
T
tanghai 已提交
7 8 9 10 11 12 13
	{
		public string Url { get; set; } = "";
		public int AppId { get; set; }
		public string AppKey { get; set; } = "";
		public string ManagerSystemUrl { get; set; } = "";
	}
}