NetNewsWire/Frameworks/Account/FeedProvider/Twitter/TwitterMention.swift

28 lines
507 B
Swift
Raw Normal View History

2020-04-18 19:03:16 +02:00
//
// TwitterMention.swift
// Account
//
// Created by Maurice Parker on 4/18/20.
// Copyright © 2020 Ranchero Software, LLC. All rights reserved.
//
import Foundation
struct TwitterMention: Codable {
let name: String?
let indices: [Int]?
let screenName: String?
let expandedURL: String?
let idStr: String?
enum CodingKeys: String, CodingKey {
case name = "url"
case indices = "indices"
case screenName = "screen_name"
case expandedURL = "expandedURL"
case idStr = "idStr"
}
}