8 lines
164 B
TypeScript
8 lines
164 B
TypeScript
/**
|
|
* Update avatar output data transfer object
|
|
* Output from updating avatar
|
|
*/
|
|
export interface UpdateAvatarOutputDto {
|
|
success: boolean;
|
|
error?: string;
|
|
} |