2023-10-04 18:45:51 -04:00
|
|
|
|
namespace DamageAssesment.Api.Responses.Models
|
2023-08-15 23:52:30 -04:00
|
|
|
|
{
|
|
|
|
|
public class Location
|
|
|
|
|
{
|
2023-09-13 01:28:24 -04:00
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
public int RegionId { get; set; }
|
2023-11-01 12:42:30 -04:00
|
|
|
|
public string LocationCode { get; set; }
|
2023-08-15 23:52:30 -04: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 23:52:30 -04:00
|
|
|
|
}
|
|
|
|
|
}
|