DamageAssessment_Backend/DamageAssesmentApi/DamageAssesment.Api.Locations/Models/Location.cs
2023-08-15 23:52:30 -04:00

23 lines
499 B
C#

using System.ComponentModel.DataAnnotations;
namespace DamageAssesment.Api.Locations.Models
{
public class Location
{
[StringLength(4)]
public string Id { get; set; }
[StringLength(1)]
public string RegionId { get; set; }
[StringLength(50)]
public string Name { get; set; }
[StringLength(1)]
public string MaintenanceCenter { get; set; }
[StringLength(2)]
public string SchoolType { get; set; }
}
}