BsonElementAttribute.cs 243 B

1234567891011121314
  1. using System;
  2. namespace MongoDB.Bson.Serialization.Attributes
  3. {
  4. public class BsonElementAttribute: Attribute
  5. {
  6. public BsonElementAttribute()
  7. {}
  8. public BsonElementAttribute(string s)
  9. {
  10. }
  11. }
  12. }