Skip to content

Commit 3c792a6

Browse files
committed
commit
1 parent 48295ee commit 3c792a6

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

Tests/Models/user.swift

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
//
2+
// user.swift
3+
// ZipPhone
4+
//
5+
// Created by Michael Eisel on 2/22/20.
6+
// Copyright © 2020 Michael Eisel. All rights reserved.
7+
//
8+
9+
import Foundation
10+
11+
struct User2: Decodable, Equatable {
12+
let firstName: String
13+
let lastName: String
14+
let email: String
15+
let login: String
16+
let passwordHash: String
17+
let gender: String
18+
let avatarUrl: String
19+
let country: String
20+
let city: String
21+
let zipCode: Int
22+
let phone: String
23+
let isVip: Bool
24+
let isFamous: Bool
25+
}

0 commit comments

Comments
 (0)