mirror of
https://github.com/Ranchero-Software/NetNewsWire.git
synced 2025-01-19 04:52:41 +01:00
24 lines
417 B
Swift
24 lines
417 B
Swift
//
|
|
// TwitterUser.swift
|
|
// Account
|
|
//
|
|
// Created by Maurice Parker on 4/16/20.
|
|
// Copyright © 2020 Ranchero Software, LLC. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
struct TwitterUser: Codable {
|
|
|
|
let name: String?
|
|
let screenName: String?
|
|
let avatarURL: String?
|
|
|
|
enum CodingKeys: String, CodingKey {
|
|
case name = "name"
|
|
case screenName = "screen_name"
|
|
case avatarURL = "profile_image_url_https"
|
|
}
|
|
|
|
}
|