HttpConfig.cs 314 字节
Newer Older
T
tanghai 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13
using MongoDB.Bson.Serialization.Attributes;

namespace Model
{
	[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; } = "";
	}
}