12 lines
312 B
C#
Raw Normal View History

namespace DamageAssesment.Api.Responses.Models
2023-08-15 23:52:30 -04:00
{
public class Location
{
public int Id { get; set; }
public int RegionId { 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; }
}
}