17 lines
219 B
Swift
17 lines
219 B
Swift
//
|
|
// MapRecord.swift
|
|
// App
|
|
//
|
|
// Created by Michael Simard on 1/10/21.
|
|
//
|
|
|
|
import Foundation
|
|
import Vapor
|
|
import Fluent
|
|
|
|
struct MapRecord: Content {
|
|
var map:MapConfig
|
|
var stats:Stats
|
|
var ratio:String
|
|
}
|