11 lines
		
	
	
		
			190 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			190 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| namespace GerstITS.Examples.WebClients.Examples.Api;
 | |
| 
 | |
| public class Country
 | |
| {
 | |
|     #region Properties
 | |
| 
 | |
|     public int Id { get; set; }
 | |
|     public string Name { get; set; }
 | |
| 
 | |
|     #endregion
 | |
| } |