16 lines
369 B
C#
16 lines
369 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
|
|
namespace FirstMVCDemo.Models
|
|
{
|
|
public class Address
|
|
{
|
|
public int AddressId { get; set; }
|
|
public string Country { get; set; }
|
|
public string State { get; set; }
|
|
public string City { get; set; }
|
|
public string Pin { get; set; }
|
|
}
|
|
} |