CHGenerator/Sources/Generator/Templates/Elements/EnlargeableImageTemplate.swift

22 lines
466 B
Swift
Raw Normal View History

2022-12-08 17:16:54 +01:00
import Foundation
struct EnlargeableImageTemplate: Template {
enum Key: String, CaseIterable {
case image = "IMAGE"
case imageExtension = "IMAGE_EXT"
case width = "WIDTH"
case height = "HEIGHT"
case leftText = "LEFT_TEXT"
case rightText = "RIGHT_TEXT"
case number = "NUMBER"
}
static let templateName = "image-enlargeable.html"
let raw: String
let results: GenerationResultsHandler
}