Skip to content

Instantly share code, notes, and snippets.

@Rookian
Created May 12, 2016 14:08
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 Rookian/16be87129ba430857562bac59ee1acf1 to your computer and use it in GitHub Desktop.
Save Rookian/16be87129ba430857562bac59ee1acf1 to your computer and use it in GitHub Desktop.
ViewModel and InputModel
public class ViewModel
{
// POST values
public Command Command { get; set; }
// Read-only values
public string Name { get; set; }
}
public class Command // or InputModel
{
public int Id { get; set; }
public string Name { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment