Beispiel #1
0
 public UserResponse(string name, string profileImage, string email)
 {
     Info = new ProfileInfoResponse(name, profileImage, email);
 }
Beispiel #2
0
 public UserResponse(ProfileInfoResponse profile)
 {
     Info = new ProfileInfoResponse(profile.Name, profile.ProfileImage, profile.Email);
 }
Beispiel #3
0
 public UserResponse()
 {
     Info = new ProfileInfoResponse();
 }