23 lines
583 B
C#
23 lines
583 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Data.Entity.Spatial;
|
|
using System.Data.Entity.Infrastructure;
|
|
using System.Linq;
|
|
using System.Web;
|
|
using System.Data.Entity;
|
|
using OSS.Models;
|
|
|
|
namespace OSS.Models
|
|
{
|
|
public class Country
|
|
{
|
|
[Key]
|
|
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
|
|
public int CountryID { get; set; }
|
|
public string CountryName { get; set; }
|
|
public string CountryValue { get; set; }
|
|
}
|
|
|
|
} |