mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-07 09:25:33 +00:00
21 lines
478 B
Swift
21 lines
478 B
Swift
//
|
|
// KMPOptions.swift
|
|
// KeymanEngine
|
|
//
|
|
// Created by Joshua Horton on 6/1/20.
|
|
// Copyright © 2020 SIL International. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
struct KMPOptions: Codable {
|
|
public var readmeFile: String? = nil
|
|
public var graphicFile: String? = nil
|
|
|
|
// We do this so that we can safely ignore any other entries.
|
|
// iOS cares not for .msis or 'executeProgram'.
|
|
enum CodingKeys: String, CodingKey {
|
|
case readmeFile
|
|
case graphicFile
|
|
}
|
|
}
|