Created
April 18, 2019 16:12
-
-
Save gnzandrs/5ba86f7ede89a7285a791d436eb6a52d to your computer and use it in GitHub Desktop.
Revisions
-
gnzandrs created this gist
Apr 18, 2019 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,14 @@ using System.ComponentModel.DataAnnotations; namespace DotNetApi.Models { public class Usuario { [Key] public long IdUsuario { get; set; } public string Nombres { get; set; } public string ApellidoPaterno { get; set; } public string ApellidoMaterno { get; set; } public string Email { get; set; } } }