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