14 lines
		
	
	
		
			320 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			320 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| using Newtonsoft.Json;
 | |
| 
 | |
| namespace Datamodels.Lookups
 | |
| {
 | |
|     public sealed class LookupValue {
 | |
|         
 | |
|         public long Id { get; set; }
 | |
|         public string Value { get; set; }
 | |
|         public bool IsActive { get; set; } = true;
 | |
|         [JsonIgnore]
 | |
|         public LookupCategory LookupCategory { get; set; }
 | |
| 
 | |
|     }
 | |
| } |