9 lines
89 B
Swift
9 lines
89 B
Swift
import Foundation
|
|
|
|
struct User: Codable {
|
|
|
|
let name: String
|
|
let email: String
|
|
|
|
}
|