mirror of
https://github.com/Ranchero-Software/NetNewsWire.git
synced 2024-12-24 08:41:31 +01:00
4fab4ffa7c
this build enables iOS functionality only.
26 lines
621 B
Swift
26 lines
621 B
Swift
//
|
|
// ArticleThemePlist.swift
|
|
// NetNewsWire
|
|
//
|
|
// Created by Stuart Breckenridge on 19/09/2021.
|
|
// Copyright © 2021 Ranchero Software. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
public struct ArticleThemePlist: Codable {
|
|
public var name: String
|
|
public var themeIdentifier: String
|
|
public var creatorHomePage: String
|
|
public var creatorName: String
|
|
public var version: Int
|
|
|
|
enum CodingKeys: String, CodingKey {
|
|
case name = "Name"
|
|
case themeIdentifier = "ThemeIdentifer" // FIXME: Spelling error!
|
|
case creatorHomePage = "CreatorHomePage"
|
|
case creatorName = "CreatorName"
|
|
case version = "Version"
|
|
}
|
|
}
|