You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
//
|
|
// Settings.swift
|
|
// LeStorage
|
|
//
|
|
// Created by Laurent Morvillier on 14/02/2024.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
class Settings: MicroStorable {
|
|
|
|
required init() {
|
|
|
|
}
|
|
|
|
var userId: String? = nil
|
|
var username: String? = nil
|
|
}
|
|
|