NetNewsWire/Frameworks/Account/FeedProvider/Reddit/RedditMediaEmbed.swift

20 lines
323 B
Swift
Raw Normal View History

2020-05-05 02:57:35 +02:00
//
// RedditMediaEmbed.swift
// Account
//
// Created by Maurice Parker on 5/4/20.
// Copyright © 2020 Ranchero Software, LLC. All rights reserved.
//
import Foundation
struct RedditMediaEmbed: Codable {
let content: String?
enum CodingKeys: String, CodingKey {
case content = "content"
}
}