InnerConfig.cs 219 B

123456789101112
  1. using System.Net;
  2. using MongoDB.Bson.Serialization.Attributes;
  3. namespace ETModel
  4. {
  5. [NoObjectPool]
  6. [BsonIgnoreExtraElements]
  7. public class InnerConfig: AConfigComponent
  8. {
  9. public string Address { get; set; }
  10. }
  11. }