/** * Upload Media View Model * * Represents the result of a media upload operation */ export interface UploadMediaViewModel { success: boolean; mediaId?: string; url?: string; error?: string; }