11 lines
		
	
	
		
			302 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			302 B
		
	
	
	
		
			C#
		
	
	
	
	
	
namespace InternshipSystem.Core
 | 
						|
{
 | 
						|
    public class BranchAddress
 | 
						|
    {
 | 
						|
        public string Street { get; set; }
 | 
						|
        public string Building { get; set; }
 | 
						|
        public string City { get; set; }
 | 
						|
        public string PostalCode { get; set; }
 | 
						|
        public string Country { get; set; }
 | 
						|
    }
 | 
						|
}  |