| 12345678910111213141516 |
- using MongoDB.Bson.Serialization.Attributes;
- namespace ETModel
- {
- /// <summary>
- /// 每个Config的基类
- /// </summary>
- [BsonKnownTypes(typeof (ClientConfig))]
- [BsonKnownTypes(typeof (InnerConfig))]
- [BsonKnownTypes(typeof (OuterConfig))]
- [BsonKnownTypes(typeof (HttpConfig))]
- [BsonKnownTypes(typeof (DBConfig))]
- public abstract class AConfigComponent: Component, ISerializeToEntity
- {
- }
- }
|