7 lines
		
	
	
		
			125 B
		
	
	
	
		
			Swift
		
	
	
	
	
	
			
		
		
	
	
			7 lines
		
	
	
		
			125 B
		
	
	
	
		
			Swift
		
	
	
	
	
	
import Foundation
 | 
						|
 | 
						|
struct User: Identifiable, Decodable {
 | 
						|
    let id: String
 | 
						|
    let username: String
 | 
						|
    let email: String
 | 
						|
} |