diff --git a/src/app/core/shared/patch-request.model.ts b/src/app/core/shared/patch-request.model.ts deleted file mode 100644 index ab99b17dfd..0000000000 --- a/src/app/core/shared/patch-request.model.ts +++ /dev/null @@ -1,14 +0,0 @@ -export enum PatchOperationType { - test = 'test', - remove = 'remove', - add = 'add', - replace = 'replace', - move = 'move', - copy = 'copy', -} - -export class PatchOperationModel { - op: PatchOperationType; - path: string; - value: any; -}