7 lines
88 B
Swift
7 lines
88 B
Swift
|
import Foundation
|
||
|
|
||
|
struct DBUser: Codable {
|
||
|
let name: String
|
||
|
let username: String
|
||
|
}
|