Advertisement
Guest User

Untitled

a guest
Mar 2nd, 2015
185
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Web;
  5. using System.ComponentModel;
  6.  
  7. namespace forms_mvc.Models
  8. {
  9. // Simple class representing a student.
  10. // We use this model in the controller and the view.
  11. public class Results
  12. {
  13. // We use default get and set methods here.
  14. // These are required for the data binding work!
  15.  
  16. [DisplayName("Last Name")]
  17. public string resultString { get; set; }
  18. }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement