13 lines
291 B
TypeScript
13 lines
291 B
TypeScript
/**
|
|
* Media View Model
|
|
*
|
|
* Represents media information for the UI layer
|
|
*/
|
|
export interface MediaViewModel {
|
|
id: string;
|
|
url: string;
|
|
type: 'image' | 'video' | 'document';
|
|
category?: 'avatar' | 'team-logo' | 'league-cover' | 'race-result';
|
|
uploadedAt: Date;
|
|
size?: number;
|
|
} |