song.js 237 B

1234567
  1. module.exports = {
  2. id: { type: String, unique: true, required: true },
  3. title: { type: String, required: true },
  4. artists: [{ type: String }],
  5. duration: { type: String, required: true },
  6. thumbnail: { type: String, required: true }
  7. };