7 lines
124 B
Swift
7 lines
124 B
Swift
import Foundation
|
|
|
|
nonisolated struct ProfileName: Codable, Sendable {
|
|
let firstName: String
|
|
let lastName: String
|
|
}
|