2022-12-12 01:21:57 +01:00
|
|
|
//
|
|
|
|
// SheetView.swift
|
2023-04-14 18:23:05 +02:00
|
|
|
// MyFiles
|
2022-12-12 01:21:57 +01:00
|
|
|
//
|
|
|
|
// Created by Javier Cicchelli on 12/12/2022.
|
|
|
|
// Copyright © 2022 Röck+Cöde. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
// MARK: - Enumerations
|
|
|
|
|
|
|
|
enum SheetView: Int {
|
|
|
|
case login
|
|
|
|
case profile
|
|
|
|
}
|
|
|
|
|
|
|
|
// MARK: - Identifiable
|
|
|
|
|
|
|
|
extension SheetView: Identifiable {
|
|
|
|
var id: Int { rawValue }
|
|
|
|
}
|