18 lines
252 B
Swift
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] = []
|
|
}
|