ComponentAttribute.cs 239 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 partial class Component
  8. {
  9. }
  10. }