12 lines
271 B
C#
12 lines
271 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace DamageAssesment.Api.SurveyResponses.Models
|
|
{
|
|
public class Region
|
|
{
|
|
public string Id { get; set; }
|
|
public string Name { get; set; }
|
|
public string Abbreviation { get; set; }
|
|
}
|
|
}
|