14 lines
		
	
	
		
			240 B
		
	
	
	
		
			Swift
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			240 B
		
	
	
	
		
			Swift
		
	
	
	
	
	
//
 | 
						|
//  GetMemberProfileResponse.swift
 | 
						|
//  SodaLive
 | 
						|
//
 | 
						|
//  Created by klaus on 9/7/24.
 | 
						|
//
 | 
						|
 | 
						|
struct GetMemberProfileResponse: Decodable {
 | 
						|
    let memberId: Int
 | 
						|
    let nickname: String
 | 
						|
    let profileImageUrl: String
 | 
						|
    let isBlocked: Bool
 | 
						|
}
 |