12 lines
306 B
TypeScript
12 lines
306 B
TypeScript
/**
|
|
* Get media output data transfer object
|
|
* Output from getting media information
|
|
*/
|
|
export interface GetMediaOutputDto {
|
|
id: string;
|
|
url: string;
|
|
type: 'image' | 'video' | 'document';
|
|
category?: 'avatar' | 'team-logo' | 'league-cover' | 'race-result';
|
|
uploadedAt: string;
|
|
size?: number;
|
|
} |