2023-08-15 22:52:30 -05:00
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
|
|
|
|
|
|
namespace DamageAssesment.Api.Locations.Models
|
|
|
|
|
{
|
|
|
|
|
public class Region
|
|
|
|
|
{
|
2023-09-13 00:28:24 -05:00
|
|
|
|
public int Id { get; set; }
|
2023-08-15 22:52:30 -05:00
|
|
|
|
public string Name { get; set; }
|
|
|
|
|
public string Abbreviation { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|