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.
29 lines
568 B
29 lines
568 B
//
|
|
// DisplayContext.swift
|
|
// PadelClub
|
|
//
|
|
// Created by Razmig Sarkissian on 20/03/2024.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
enum DisplayContext {
|
|
case addition
|
|
case edition
|
|
case lockedForEditing
|
|
case selection
|
|
}
|
|
|
|
enum DisplayStyle {
|
|
case title
|
|
case wide
|
|
case short
|
|
}
|
|
|
|
enum MatchViewStyle {
|
|
case standardStyle // vue normal
|
|
case sectionedStandardStyle // vue normal avec des sections indiquant déjà la manche
|
|
case feedStyle // vue programmation
|
|
case plainStyle // vue detail
|
|
case tournamentResultStyle //vue resultat tournoi
|
|
}
|
|
|