Ejemplo n.º 1
0
 public LoginResponse(bool success, string session, MenteeInfo menteeInfo)
 {
     this.success    = success;
     this.session    = session;
     this.isMentor   = false;
     this.menteeInfo = menteeInfo;
 }
Ejemplo n.º 2
0
 public MeepleInfo(MenteeInfo menteeInfo)
 {
     this.isMentor   = false;
     this.mentorInfo = new MentorInfo();
     this.menteeInfo = menteeInfo;
 }