view GeoQuiz/Logic/UserSettingsModel.swift @ 10:a793f33f05fb

refactor code and fix layout
author Dennis C. M. <dennis@denniscm.com>
date Sat, 08 Oct 2022 21:36:40 +0200
parents GeoQuiz/Models/UserSettingsModel.swift@3540c7efc216
children
line wrap: on
line source

//
//  UserSettingsModel.swift
//  GeoQuiz
//
//  Created by Dennis Concepción Martín on 7/10/22.
//

import Foundation

struct UserSettings: Codable {
    var haptics: Bool = true
    var sound: Bool = true
    var numberOfLives: Int = 25
}