mirror of
https://github.com/apricote/Listory.git
synced 2026-01-13 21:21:02 +00:00
13 lines
169 B
TypeScript
13 lines
169 B
TypeScript
|
|
import { Column } from "typeorm";
|
||
|
|
|
||
|
|
export class SpotifyConnection {
|
||
|
|
@Column()
|
||
|
|
id: string;
|
||
|
|
|
||
|
|
@Column()
|
||
|
|
accessToken: string;
|
||
|
|
|
||
|
|
@Column()
|
||
|
|
refreshToken: string;
|
||
|
|
}
|