19 lines
285 B
Swift
19 lines
285 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 showDebugInfo: Bool = false
|
|
|
|
public init() {
|
|
|
|
}
|
|
}
|