blob: 90787402ca46a0ffb4a00e1ea00cd48b5b46fdcf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
using System;
using System.Collections.Generic;
using System.Text;
namespace Tango.BLL.Objects
{
public class Address : ObjectBase
{
public string AddressString { get; set; }
public string Locality { get; set; }
public string City { get; set; }
public string State { get; set; }
public string CountryCode { get; set; }
public string PostalCode { get; set; }
}
}
|