| 123456789101112131415161718192021 |
- using Base;
- using MongoDB.Bson.Serialization.Attributes;
- namespace Model
- {
- [BsonIgnoreExtraElements]
- public class ClientConfig: Component
- {
- public string Host = "";
- public int Port;
- [BsonIgnore]
- public string Address
- {
- get
- {
- return $"{this.Host}:{this.Port}";
- }
- }
- }
- }
|