16 lines
421 B
C#
16 lines
421 B
C#
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; }
|
|
public string Name { get; set; }
|
|
public string MaintenanceCenter { get; set; }
|
|
public string SchoolType { get; set; }
|
|
}
|
|
}
|