20 lines
323 B
Swift
20 lines
323 B
Swift
//
|
|
// 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"
|
|
}
|
|
|
|
}
|