Files
ASP.NET/IntroductorySessions/Session05/Projects/Library/Address.cs
T

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; }
}
}