mirror of
				https://github.com/KevinMidboe/linguist.git
				synced 2025-10-29 17:50:22 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
		
			478 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			478 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| 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;
 | |
|         }
 | |
|     }
 | |
| } |