mirror of
https://github.com/standardnotes/server
synced 2026-07-14 09:01:33 -04:00
9 lines
199 B
TypeScript
9 lines
199 B
TypeScript
import { SharedVaultMoveType } from '@standardnotes/security'
|
|
|
|
export interface MoveFileDTO {
|
|
moveType: SharedVaultMoveType
|
|
fromUuid: string
|
|
toUuid: string
|
|
resourceRemoteIdentifier: string
|
|
}
|