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