BsonDefaultValueAttribute.cs 203 B

1234567891011
  1. using System;
  2. namespace MongoDB.Bson.Serialization.Attributes
  3. {
  4. public class BsonDefaultValueAttribute: Attribute
  5. {
  6. public BsonDefaultValueAttribute(object o)
  7. {
  8. }
  9. }
  10. }