HttpConfig.cs 315 B

12345678910111213
  1. using MongoDB.Bson.Serialization.Attributes;
  2. namespace ETModel
  3. {
  4. [BsonIgnoreExtraElements]
  5. public class HttpConfig: AConfigComponent
  6. {
  7. public string Url { get; set; } = "";
  8. public int AppId { get; set; }
  9. public string AppKey { get; set; } = "";
  10. public string ManagerSystemUrl { get; set; } = "";
  11. }
  12. }