ClientConfig.cs 177 B

12345678910
  1. using System.Net;
  2. using MongoDB.Bson.Serialization.Attributes;
  3. namespace ETModel
  4. {
  5. public class ClientConfig: AConfigComponent
  6. {
  7. public string Address { get; set; }
  8. }
  9. }