mirror of
https://github.com/apricote/Listory.git
synced 2026-01-13 21:21:02 +00:00
15 lines
186 B
TypeScript
15 lines
186 B
TypeScript
import { Column } from "typeorm";
|
|
|
|
export class SpotifyLibraryDetails {
|
|
@Column()
|
|
id: string;
|
|
|
|
@Column()
|
|
uri: string;
|
|
|
|
@Column()
|
|
type: string;
|
|
|
|
@Column()
|
|
href: string;
|
|
}
|