19 lines
437 B
Swift
19 lines
437 B
Swift
//
|
|
// TestSettings.swift
|
|
// AutoCatCore
|
|
//
|
|
// Created by Selim Mustafaev on 06.04.2022.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
public class TestSettings: SettingsProtocol {
|
|
|
|
public var user: User = User()
|
|
public var recognizeAlternativeOrder: Bool = false
|
|
public var recognizeShortenedNumbers: Bool = false
|
|
public var defaultRegion: String = ""
|
|
public var recordBeep: Bool = false
|
|
public var showDebugInfo: Bool = false
|
|
}
|