17 lines
		
	
	
		
			365 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			365 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| using System;
 | |
| using System.Collections.Generic;
 | |
| using System.Linq;
 | |
| using System.Text;
 | |
| 
 | |
| namespace AIMSExtension
 | |
| {
 | |
|     public class JsonTextForDoc
 | |
|     {
 | |
|         public string Id { get; set; }
 | |
|         public string Value { get; set; }
 | |
|         public string Type { get; set; }
 | |
|         public string Tag { get; set; }
 | |
|         public string Text { get; set; }
 | |
|     }
 | |
| }
 |