17 lines
215 B
Swift
17 lines
215 B
Swift
import Foundation
|
|
|
|
struct ImageGenerationJob {
|
|
|
|
let image: String
|
|
|
|
let version: String
|
|
|
|
let maximumWidth: CGFloat
|
|
|
|
let maximumHeight: CGFloat
|
|
|
|
let quality: CGFloat
|
|
|
|
let type: ImageFileType
|
|
}
|