ContactViewModel.cs 927 B

1234567891011121314151617181920212223242526272829303132
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Web;
  5. namespace CD67.FicheCollege.MVC.Models
  6. {
  7. public class ContactViewModel
  8. {
  9. public string Role { get; set; }
  10. public string SID { get; set; }
  11. public string Login { get; set; }
  12. public string Nom { get; set; }
  13. public string Prenom { get; set; }
  14. public string Email { get; set; }
  15. public string Tel { get; set; }
  16. public string Structure { get; set; }
  17. public ContactViewModel(string Role, string SID, string Login, string Nom, string Prenom, string Email, string Tel, string Structure)
  18. {
  19. this.Role = Role;
  20. this.SID = SID;
  21. this.Login = Login;
  22. this.Nom = Nom;
  23. this.Prenom = Prenom;
  24. this.Email = Email;
  25. this.Tel = Tel;
  26. this.Structure = Structure;
  27. }
  28. }
  29. }