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