17 lines
365 B
TypeScript
17 lines
365 B
TypeScript
/**
|
|
* Generated by orval v7.16.0 🍺
|
|
* Do not edit manually.
|
|
* OpenAPI definition
|
|
* OpenAPI spec version: v0
|
|
*/
|
|
import type { BaseTrackProgressType } from './baseTrackProgressType';
|
|
|
|
export interface BaseTrackProgress {
|
|
id?: string;
|
|
playlistId?: number;
|
|
trackSourceId?: number;
|
|
userId?: number;
|
|
timestamp?: number;
|
|
type?: BaseTrackProgressType;
|
|
}
|