ComponentDB.cs 254 B

1234567891011
  1. using MongoDB.Bson.Serialization.Attributes;
  2. namespace Model
  3. {
  4. [BsonKnownTypes(typeof(AConfigComponent))]
  5. [BsonKnownTypes(typeof(UnitGateComponent))]
  6. [BsonKnownTypes(typeof(NumericComponent))]
  7. public abstract class ComponentDB : Component
  8. {
  9. }
  10. }