ddstats-server/schemas/Finishes.js

11 lines
206 B
JavaScript
Raw Normal View History

2021-09-25 17:47:05 +02:00
import { Schema } from 'mongoose'
import Level from './Level.js'
import Player from './Player.js'
const Finish = new Schema({
map: Level,
time: Date,
players: [Player]
})
export default Finish