20 lines
603 B
C#
Raw Permalink Normal View History

2023-08-15 23:52:30 -04:00
using System.ComponentModel.DataAnnotations;
namespace DamageAssesment.Api.Locations.Models
{
public class Location
{
[Key]
public int Id { get; set; }
public int RegionId { get; set; }
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; }
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
}
}