Skip to content

Instantly share code, notes, and snippets.

@gzamudio
Last active August 3, 2018 16:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gzamudio/38fa5cf08f60c2429fe8a2b483bfd83c to your computer and use it in GitHub Desktop.
Save gzamudio/38fa5cf08f60c2429fe8a2b483bfd83c to your computer and use it in GitHub Desktop.
Generic View Model
// ExampleApp/src/Models/Views/UserViewModel.cs
namespace ExampleApp.Models.Views
{
public class UserViewModel
{
public string Username { get; set; }
public string Name { get; set; }
public string Email { get; set; }
public int DNI { get; set; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment