20 lines
264 B
Swift
20 lines
264 B
Swift
//
|
|
// MapConfig.swift
|
|
// App
|
|
//
|
|
// Created by Michael Simard on 10/29/21.
|
|
//
|
|
|
|
import Foundation
|
|
import Fluent
|
|
import Vapor
|
|
|
|
struct MapConfig:Content, Hashable{
|
|
|
|
var mapId:Int
|
|
var name:String
|
|
var imageName:String
|
|
var gameModeGroupIds:[String]
|
|
|
|
}
|