gistlib
To create a sample ViewModel in C#, you can follow these steps:
main.cspublic class SampleViewModel { public string Title { get; set; } public string Description { get; set; } } 115 chars6 lines
public class SampleViewModel { public string Title { get; set; } public string Description { get; set; } }
gistlibby LogSnag