CHGenerator/WebsiteGenerator/Content/ThumbnailStyle.swift

36 lines
545 B
Swift
Raw Normal View History

2022-08-16 10:39:05 +02:00
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 {
}