music-downloader/app/model/SourceModel.js

22 lines
320 B
JavaScript
Raw Normal View History

2023-07-30 08:49:23 +00:00
class SourceModel {
constructor() {
this.name = "";
}
getName() {
return this.name;
}
search(keywords) {
return {
source_name: "",
name: "",
music_url: "",
lyric_url: "",
}
}
}
module.exports = {
SourceModel
}