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

23 lines
369 B
Swift
Raw Normal View History

2020-04-18 20:46:28 +02:00
//
// TwitterMedia.swift
// Account
//
// Created by Maurice Parker on 4/20/20.
2020-04-18 20:46:28 +02:00
// Copyright © 2020 Ranchero Software, LLC. All rights reserved.
//
import Foundation
struct TwitterMedia: Codable, TwitterEntity {
2020-04-18 20:46:28 +02:00
let indices: [Int]?
enum CodingKeys: String, CodingKey {
case indices = "indices"
}
func renderAsHTML() -> String {
return String()
2020-04-18 20:46:28 +02:00
}
}