Skip to content

Instantly share code, notes, and snippets.

@carloscds
Created March 16, 2020 19:27
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save carloscds/e9d5029b5cf331624e3bd0779792290f to your computer and use it in GitHub Desktop.
public class Cliente
{
public int ID { get; set; }
[Index]
[MaxLength(100)]
public string Nome { get; set; }
public string Cidade { get; set; }
public string UF { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment