mirror of
https://github.com/volodymyrsmirnov/MalwareMultiScan.git
synced 2025-08-25 22:01:16 +00:00
completed the UI and docker-compose.yaml basic app
This commit is contained in:
15
MalwareMultiScan.Ui/models/scan-result-entry-flattened.ts
Normal file
15
MalwareMultiScan.Ui/models/scan-result-entry-flattened.ts
Normal file
@@ -0,0 +1,15 @@
|
||||
import ScanResultEntry from '~/models/scan-result-entry';
|
||||
|
||||
export default class ScanResultEntryFlattened implements ScanResultEntry {
|
||||
readonly id: string;
|
||||
readonly completed: boolean;
|
||||
readonly succeeded: boolean | null;
|
||||
readonly threats: string[];
|
||||
|
||||
constructor(id: string, completed: boolean, succeeded: boolean | null, threats: string[]) {
|
||||
this.id = id;
|
||||
this.completed = completed;
|
||||
this.succeeded = succeeded;
|
||||
this.threats = threats;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user