/** * Media Service - DTO Only * * Returns raw API DTOs. No ViewModels or UX logic. * All client-side presentation logic must be handled by hooks/components. */ export class MediaService { constructor(private readonly apiClient: any) {} async getMediaById(mediaId: string): Promise { return { id: mediaId, url: '' }; } }