ComponentWithIdAttribute.cs 148 B

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