Skip to content
This repository has been archived by the owner on Nov 29, 2021. It is now read-only.

Commit

Permalink
feat: define Player interface
Browse files Browse the repository at this point in the history
  • Loading branch information
YanceyOfficial committed Dec 27, 2019
1 parent 83edf6b commit 297b1b6
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions src/player/interfaces/player.interface.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import { Document } from 'mongoose'

export interface Player extends Document {
readonly title: string
readonly artist: string
readonly lrc: string
readonly coverUrl: string
readonly musicFileUrl: string
readonly createdAt: string
readonly updatedAt: string
}

0 comments on commit 297b1b6

Please sign in to comment.