view GeoQuiz/Logic/UserSettingsModel.swift @ 11:039b26a99a48

implementing RevenueCat
author Dennis C. M. <dennis@denniscm.com>
date Sun, 09 Oct 2022 17:02:34 +0200
parents a793f33f05fb
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
}