3474967700
- Support for api's that use keys - Removed idle instances. --------- Co-authored-by: Viktor Kalyniuk <@> Co-authored-by: Simon Rieger <simono41@brothertec.eu>
18 lines
616 B
Swift
18 lines
616 B
Swift
//
|
|
// Keys.swift
|
|
// LiTranslate
|
|
//
|
|
// Created by Viktor Kalyniuk on 18.08.2022.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
struct Keys {
|
|
static let bookmarks: String = "bookmarks"
|
|
static let libreTranslateSelfHostURL: String = "libreTranslateSelfHostURL"
|
|
static let libreTranslateSelfHostKey: String = "libreTranslateSelfHostKey"
|
|
static let libreTranslateDefaultURL: String = "libreTranslateURL"
|
|
static let languageInputSelection: String = "languageInputSelection"
|
|
static let languageOutputSelection: String = "languageOutputSelection"
|
|
static let recentlyUsedLanguages: String = "recentlyUsedLanguages"
|
|
}
|