Skip to content

Commit

Permalink
commit
Browse files Browse the repository at this point in the history
  • Loading branch information
michaeleisel committed Feb 23, 2020
1 parent 48295ee commit 3c792a6
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions Tests/Models/user.swift
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
}

0 comments on commit 3c792a6

Please sign in to comment.