CHGenerator/WebsiteGenerator/ThumbnailStyle.swift
Christoph Hagen 14b935249f First version
2022-08-16 10:39:05 +02:00

36 lines
545 B
Swift

import Foundation
enum ThumbnailStyle: String, CaseIterable {
case large
case square
case small
var height: Int {
switch self {
case .large:
return 210
case .square:
return 178
case .small:
return 78
}
}
var width: Int {
switch self {
case .large:
return 374
case .square:
return height
case .small:
return height
}
}
}
extension ThumbnailStyle: Codable {
}