Files
Memola/Memola/Utilies/AppWindow/AppWindow.swift
2024-07-17 21:29:13 +07:00

20 lines
275 B
Swift

//
// AppWindow.swift
// Memola
//
// Created by Dscyre Scotti on 7/17/24.
//
import Foundation
enum AppWindow: String, Identifiable {
var id: String { rawValue }
case dashboard
case settings
var url: URL? {
URL(string: "memola:\(id)")
}
}