Files
gridpilot.gg/apps/website/lib/view-models/UpdateAvatarViewModel.ts
2025-12-17 22:17:02 +01:00

9 lines
174 B
TypeScript

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