| 1234567891011121314151617181920212223242526272829303132 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Web;
- namespace CD67.FicheCollege.MVC.Models
- {
- public class ContactViewModel
- {
- public string Role { get; set; }
- public string SID { get; set; }
- public string Login { get; set; }
- public string Nom { get; set; }
- public string Prenom { get; set; }
- public string Email { get; set; }
- public string Tel { get; set; }
- public string Structure { get; set; }
- public ContactViewModel(string Role, string SID, string Login, string Nom, string Prenom, string Email, string Tel, string Structure)
- {
- this.Role = Role;
- this.SID = SID;
- this.Login = Login;
- this.Nom = Nom;
- this.Prenom = Prenom;
- this.Email = Email;
- this.Tel = Tel;
- this.Structure = Structure;
- }
- }
- }
|