10 lines
233 B
C#
10 lines
233 B
C#
namespace MyLibrary
|
|
{
|
|
public class Address
|
|
{
|
|
public string Street { get; set; }
|
|
public string City { get; set; }
|
|
public string State { get; set; }
|
|
public string Pincode { get; set; }
|
|
}
|
|
} |