Adds optional theme description

This commit is contained in:
Stuart Breckenridge 2021-09-21 06:18:15 +08:00
parent 1e5fd6499e
commit 7986e1caee

View File

@ -11,6 +11,7 @@ import Foundation
public struct ArticleThemePlist: Codable {
public var name: String
public var themeIdentifier: String
public var themeDescription: String?
public var creatorHomePage: String
public var creatorName: String
public var version: Int
@ -18,6 +19,7 @@ public struct ArticleThemePlist: Codable {
enum CodingKeys: String, CodingKey {
case name = "Name"
case themeIdentifier = "ThemeIdentifier"
case themeDescription = "ThemeDescription"
case creatorHomePage = "CreatorHomePage"
case creatorName = "CreatorName"
case version = "Version"