20 lines
513 B
C#
20 lines
513 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;
|
|
|
|
namespace OSS.Models
|
|
{
|
|
public class Sector
|
|
{
|
|
[Key]
|
|
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
|
|
public int SectorID { get; set; }
|
|
public string SectorName { get; set; }
|
|
}
|
|
} |