Removed unused model

This commit is contained in:
Giuseppe Digilio
2018-12-27 15:59:33 +01:00
parent 3764765df5
commit 8e65ee93c0

View File

@@ -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;
}