C# samples to disambiguate from Smalltalk

This commit is contained in:
Damien Pollet
2014-08-07 14:43:35 +02:00
parent 0017310dd1
commit 49ebf4b303
4 changed files with 200 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
using System;
namespace MongoDB.Serialization.Descriptors
{
internal class BsonPropertyValue
{
public bool IsDictionary { get; private set; }
public Type Type { get; private set; }
public object Value { get; private set; }
public BsonPropertyValue(Type type, object value, bool isDictionary)
{
Type = type;
Value = value;
IsDictionary = isDictionary;
}
}
}