9 lines
174 B
TypeScript
9 lines
174 B
TypeScript
/**
|
|
* Update Avatar View Model
|
|
*
|
|
* Represents the result of an avatar update operation
|
|
*/
|
|
export interface UpdateAvatarViewModel {
|
|
success: boolean;
|
|
error?: string;
|
|
} |