/** * Avatar View Model * * Represents avatar information for the UI layer */ export interface AvatarViewModel { driverId: string; avatarUrl?: string; hasAvatar: boolean; }