koel/resources/assets/js/stubs/album.js
2016-11-26 10:25:35 +07:00

14 lines
221 B
JavaScript

import config from '../config'
import artist from './artist'
export default {
artist,
id: 0,
artist_id: 0,
name: '',
cover: config.unknownCover,
playCount: 0,
length: 0,
fmtLength: '00:00',
songs: []
}