red-ui/libs/red-domain/src/lib/redaction-log/manual-redaction-entry.ts
2021-12-14 21:04:25 +02:00

21 lines
517 B
TypeScript

import { IRectangle } from '../geometry';
import { LogEntryStatus } from './types';
export interface IManualRedactionEntry {
addToDictionary?: boolean;
addToDossierDictionary?: boolean;
annotationId?: string;
fileId?: string;
legalBasis?: string;
positions?: IRectangle[];
processedDate?: string;
reason?: string;
requestDate?: string;
softDeletedTime?: string;
status?: LogEntryStatus;
type?: string;
user?: string;
value?: string;
rectangle?: boolean;
}