koel/resources/assets/js/stubs/album.js
2016-03-18 12:45:23 +08:00

14 lines
243 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: [],
};