tiseza_oss_live/Models/SubSector.cs

22 lines
572 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;
namespace OSS.Models
{
public class SubSector
{
[Key]
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
public int SubSectorID { get; set; }
public string SubSectorName { get; set; }
public string SectorName { get; set; }
}
}