CHGenerator/Sources/Generator/Templates/Elements/BoxTemplate.swift
2022-12-02 10:25:54 +01:00

16 lines
258 B
Swift

import Foundation
struct BoxTemplate: Template {
enum Key: String, CaseIterable {
case title = "TITLE"
case text = "TEXT"
}
static let templateName = "box.html"
var raw: String
let results: GenerationResultsHandler
}