10 lines
221 B
TypeScript
10 lines
221 B
TypeScript
/**
|
|
* Request Avatar Generation View Model
|
|
*
|
|
* Represents the result of an avatar generation request
|
|
*/
|
|
export interface RequestAvatarGenerationViewModel {
|
|
success: boolean;
|
|
avatarUrl?: string;
|
|
error?: string;
|
|
} |