tiseza_oss_live/Models/Sector.cs

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