work on player

This commit is contained in:
bkfox
2020-10-22 00:30:02 +02:00
parent c10a114393
commit 2a0d0b1758
50 changed files with 19630 additions and 2193 deletions

View File

@ -1,8 +1,9 @@
import Model from './model';
import Model, {Set} from './model';
export default class Sound extends Model {
get name() { return this.data.name }
get src() { return this.data.url }
static getId(data) { return data.pk }
}