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.
25 lines
386 B
25 lines
386 B
//
|
|
// Screen.swift
|
|
// PadelClub
|
|
//
|
|
// Created by Razmig Sarkissian on 03/03/2024.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
enum Screen: String, Codable {
|
|
case inscription
|
|
case groupStage
|
|
case round
|
|
case settings
|
|
case structure
|
|
case schedule
|
|
case cashier
|
|
case call
|
|
case rankings
|
|
case broadcast
|
|
case event
|
|
case print
|
|
case share
|
|
case restingTime
|
|
}
|
|
|