ComponentAttribute.cs 186 B

12345678910
  1. using MongoDB.Bson.Serialization.Attributes;
  2. namespace ETModel
  3. {
  4. [BsonKnownTypes(typeof(AConfigComponent))]
  5. [BsonKnownTypes(typeof(Entity))]
  6. public partial class Component
  7. {
  8. }
  9. }