feat(api): update existing artists in MusicLibrary

This commit is contained in:
Julian Tölle 2021-11-21 15:53:27 +01:00
parent a0c28e2324
commit a0ffe108e1
11 changed files with 176 additions and 1 deletions

View file

@ -0,0 +1,10 @@
import { Artist } from "../artist.entity";
import { Genre } from "../genre.entity";
export class UpdateArtistDto {
artist: Artist;
updatedFields: {
name: string;
genres: Genre[];
};
}