dotnettutorial-asp-dot-net-mvc/FirstMVCDemo/Models/Address.cs

16 lines
369 B
C#
Raw Normal View History

2021-06-11 15:44:31 +10:00
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; }
}
}