OuterConfig.cs 224 B

1234567891011
  1. using MongoDB.Bson.Serialization.Attributes;
  2. namespace ETModel
  3. {
  4. [BsonIgnoreExtraElements]
  5. public class OuterConfig: AConfigComponent
  6. {
  7. public string Address { get; set; }
  8. public string Address2 { get; set; }
  9. }
  10. }