mirror of
https://github.com/apricote/Listory.git
synced 2026-02-07 10:17:02 +00:00
8 lines
239 B
TypeScript
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;
|
|
}
|