16 lines
294 B
Swift
16 lines
294 B
Swift
import Foundation
|
|
|
|
struct OverviewSectionTemplate: Template {
|
|
|
|
enum Key: String, CaseIterable {
|
|
case url = "URL"
|
|
case title = "TITLE"
|
|
case items = "ITEMS"
|
|
case more = "MORE"
|
|
}
|
|
|
|
static let templateName = "overview-section.html"
|
|
|
|
let raw: String
|
|
}
|