namespace wcftest.orm
|
{
|
using System;
|
using System.Collections.Generic;
|
using System.ComponentModel.DataAnnotations;
|
using System.ComponentModel.DataAnnotations.Schema;
|
using System.Data.Entity.Spatial;
|
|
public partial class ExpressUPS_Country
|
{
|
[Key]
|
public int UPSCountry_Id { get; set; }
|
|
[StringLength(50)]
|
public string CountryCode { get; set; }
|
|
[StringLength(50)]
|
public string CountryFullName { get; set; }
|
|
public string ExpandFields { get; set; }
|
}
|
}
|