12 lines
		
	
	
		
			315 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			315 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| using System.Collections.Generic;
 | |
| 
 | |
| namespace Datamodels.Lookups
 | |
| {
 | |
|     public sealed class LookupCategory
 | |
|     {
 | |
|         public long Id { get; set; }
 | |
|         public string CategoryName { get; set; }
 | |
|         public bool IsActive { get; set; } = true;
 | |
|         public List<LookupValue> LookupValues { get; set; }
 | |
|     }
 | |
| } |