ComponentDB.cs 210 B

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