Path: blob/a-new-beginning/Folium-iOS/Enumerations/SupportedFormat.swift
2 views
//
// SupportedFormat.swift
// Folium-iOS
//
// Created by Jarrod Norwell on 20/11/2025.
//
import Foundation
enum SupportedFormat : String {
case `3ds` = "3ds",
app = "app",
cci = "cci",
cia = "cia",
cxi = "cxi"
case nds = "nds",
srl = "srl"
case nes = "nes"
case gb = "gb",
gbc = "gbc"
case bin = "bin",
chd = "chd",
cue = "cue",
exe = "exe",
img = "img",
iso = "iso"
case sfc = "sfc",
smc = "smc"
case gen = "gen",
md = "md",
smd = "smd"
case gba = "gba"
case col = "col"
var string: String { rawValue }
}