Listory/src/music-library/dto/create-artist.dto.ts
2021-05-25 19:23:42 +02:00

8 lines
239 B
TypeScript

import { SpotifyLibraryDetails } from "../../sources/spotify/spotify-library-details.entity";
import { Genre } from "../genre.entity";
export class CreateArtistDto {
name: string;
genres: Genre[];
spotify?: SpotifyLibraryDetails;
}