18 lines
355 B
C#
18 lines
355 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace DamageAssesment.Api.Locations.Models
|
|
{
|
|
public class Region
|
|
{
|
|
|
|
[StringLength(1)]
|
|
public string Id { get; set; }
|
|
|
|
[StringLength(50)]
|
|
public string Name { get; set; }
|
|
|
|
[StringLength(5)]
|
|
public string Abbreviation { get; set; }
|
|
}
|
|
}
|