15 lines
259 B
TypeScript
15 lines
259 B
TypeScript
|
|
import type { FileKind } from './file.js'
|
||
|
|
|
||
|
|
export interface RecycleBinItemDTO {
|
||
|
|
name: string
|
||
|
|
originalName: string
|
||
|
|
type: FileKind
|
||
|
|
deletedDate: string
|
||
|
|
path: string
|
||
|
|
}
|
||
|
|
|
||
|
|
export interface RecycleBinGroupDTO {
|
||
|
|
date: string
|
||
|
|
items: RecycleBinItemDTO[]
|
||
|
|
}
|