tiseza_oss_live/Models/Country.cs

23 lines
583 B
C#
Raw Permalink Normal View History

2025-11-15 11:14:31 +00:00
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; }
}
}