Skip to content

Instantly share code, notes, and snippets.

@renatogroffe
Created April 10, 2023 01:07
Show Gist options
  • Save renatogroffe/a0707697f5616f3d4f918b62122c50a2 to your computer and use it in GitHub Desktop.
Save renatogroffe/a0707697f5616f3d4f918b62122c50a2 to your computer and use it in GitHub Desktop.
using System.ComponentModel.DataAnnotations;
namespace ConsoleAppAllowedValues.Models;
public class Estado
{
[Required]
[AllowedValues("CO", "N", "NE", "S", "SE", ErrorMessage = "Regiao invalida")]
public string? CodRegiao { get; set; }
[Required]
public string? Nome { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment