15 lines
		
	
	
		
			339 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			339 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| using System;
 | |
| using System.Collections.Generic;
 | |
| using System.Linq;
 | |
| using System.Text;
 | |
| using System.Threading.Tasks;
 | |
| 
 | |
| namespace Core.DomainObjects {
 | |
|   public class Address {
 | |
|     public string Street { get; set; }
 | |
|     public string City { get; set; }
 | |
|     public string PostCode { get; set; }
 | |
|     public string Country { get; set; }
 | |
|   }
 | |
| }
 |