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