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

9 lines
172 B
TypeScript

/**
* Delete Media View Model
*
* Represents the result of a media deletion operation
*/
export interface DeleteMediaViewModel {
success: boolean;
error?: string;
}