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

16 lines
258 B
Swift
Raw Normal View History

2022-08-16 10:39:05 +02:00
import Foundation
2022-09-18 17:21:57 +02:00
struct BoxTemplate: Template {
2022-08-16 10:39:05 +02:00
enum Key: String, CaseIterable {
case title = "TITLE"
case text = "TEXT"
}
2022-09-18 17:21:57 +02:00
static let templateName = "box.html"
2022-08-16 10:39:05 +02:00
var raw: String
2022-12-02 10:25:54 +01:00
let results: GenerationResultsHandler
2022-08-16 10:39:05 +02:00
}