15 lines
179 B
Swift
15 lines
179 B
Swift
|
import Foundation
|
||
|
|
||
|
struct ThumbnailInfo {
|
||
|
|
||
|
let url: String?
|
||
|
|
||
|
let imageFilePath: String
|
||
|
|
||
|
let imageHtmlUrl: String
|
||
|
|
||
|
let title: String
|
||
|
|
||
|
let cornerText: String?
|
||
|
}
|