2023-08-15 22:52:30 -05:00
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
|
|
|
|
|
|
namespace DamageAssesment.Api.Locations.Models
|
|
|
|
|
{
|
|
|
|
|
public class Location
|
|
|
|
|
{
|
2023-09-13 00:28:24 -05:00
|
|
|
|
[Key]
|
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
public int RegionId { get; set; }
|
|
|
|
|
public string LocationCode { get; set; }
|
2023-08-15 22:52:30 -05:00
|
|
|
|
public string Name { get; set; }
|
|
|
|
|
public string MaintenanceCenter { get; set; }
|
|
|
|
|
public string SchoolType { get; set; }
|
2023-11-07 16:51:10 -05:00
|
|
|
|
public int? DataValue { get; set; }
|
|
|
|
|
public int? Enrollment { get; set; }
|
|
|
|
|
public double? Longitute { get; set; }
|
|
|
|
|
public double? Latitude { get; set; }
|
2023-08-15 22:52:30 -05:00
|
|
|
|
}
|
|
|
|
|
}
|