17 lines
543 B
C#
17 lines
543 B
C#
namespace DamageAssesment.Api.Responses.Models
|
|
{
|
|
public class Location
|
|
{
|
|
public int Id { get; set; }
|
|
public int RegionId { get; set; }
|
|
public string LocationCode { get; set; }
|
|
public string Name { get; set; }
|
|
public string MaintenanceCenter { get; set; }
|
|
public string SchoolType { get; set; }
|
|
public int? DataValue { get; set; }
|
|
public int? Enrollment { get; set; }
|
|
public double? Longitute { get; set; }
|
|
public double? Latitude { get; set; }
|
|
}
|
|
}
|