This repository has been archived on 2024-05-17. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
AlloVictor/AlloVictor/AppState.swift
Victor Bodinaud 9ec3ba818b 🚀 First version
2024-04-18 19:32:10 +02:00

18 lines
252 B
Swift

//
// AppState.swift
// AlloVictor
//
// Created by Bodinaud Victor on 13/04/2024.
//
import Foundation
enum Route: Hashable {
case offers
case detail(Offer?)
}
class AppState: ObservableObject {
@Published var routes: [Route] = []
}