Files
cod-backend/Sources/App/Content/Config/GameConfig.swift
2021-10-31 00:01:27 -05:00

23 lines
268 B
Swift

//
// GameConfig.swift
// App
//
// Created by Michael Simard on 10/29/21.
//
import Foundation
import Fluent
import Vapor
struct GameConfig: Content {
var gameId: String
var name: String
var maps: [MapConfig]
var enabled:Bool
}