mirror of
https://github.com/Ranchero-Software/NetNewsWire.git
synced 2025-02-09 08:39:00 +01:00
23 lines
369 B
Swift
23 lines
369 B
Swift
//
|
|
// TwitterMedia.swift
|
|
// Account
|
|
//
|
|
// Created by Maurice Parker on 4/20/20.
|
|
// Copyright © 2020 Ranchero Software, LLC. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
struct TwitterMedia: Codable, TwitterEntity {
|
|
|
|
let indices: [Int]?
|
|
|
|
enum CodingKeys: String, CodingKey {
|
|
case indices = "indices"
|
|
}
|
|
|
|
func renderAsHTML() -> String {
|
|
return String()
|
|
}
|
|
}
|