13 lines
258 B
Swift
13 lines
258 B
Swift
import Foundation
|
|
|
|
struct PostSettingsFile {
|
|
|
|
/// The number of posts to show in a single page of the news feed
|
|
let postsPerPage: Int
|
|
|
|
/// The maximum width of the main content
|
|
let contentWidth: Int
|
|
}
|
|
|
|
extension PostSettingsFile: Codable { }
|