using System;
using System.Text;
namespace OrdersParser{
/// <summary>
/// Summary description for Address.
/// </summary>
public class Address
{
private string city;
private string country;
public Address()
{
}
public string City
{
get { return city; }
set { city = value; }
}
public string Country
{
get { return country; }
set { country = value; }
}
public override string ToString()
{
StringBuilder sb = new StringBuilder();
sb.Append(city)
.Append(", ")
.Append(country);
return sb.ToString();
}
}
}
|