-
-
Notifications
You must be signed in to change notification settings - Fork 60
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
48295ee
commit 3c792a6
Showing
1 changed file
with
25 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
// | ||
// user.swift | ||
// ZipPhone | ||
// | ||
// Created by Michael Eisel on 2/22/20. | ||
// Copyright © 2020 Michael Eisel. All rights reserved. | ||
// | ||
|
||
import Foundation | ||
|
||
struct User2: Decodable, Equatable { | ||
let firstName: String | ||
let lastName: String | ||
let email: String | ||
let login: String | ||
let passwordHash: String | ||
let gender: String | ||
let avatarUrl: String | ||
let country: String | ||
let city: String | ||
let zipCode: Int | ||
let phone: String | ||
let isVip: Bool | ||
let isFamous: Bool | ||
} |