RunServerConfig.cs 175 B

12345678910
  1. using MongoDB.Bson.Serialization.Attributes;
  2. namespace Model
  3. {
  4. [BsonIgnoreExtraElements]
  5. public class RunServerConfig: AConfigComponent
  6. {
  7. public string IP = "";
  8. }
  9. }