EasyRecon/Hunt3r

View on GitHub
frontend/src/app/core/scope/scope.ts

Summary

Maintainability
A
0 mins
Test Coverage
export interface Scope {
    id:number;
    scope:string;
    scope_type:string;
    last_scan:string;
    leaks:number;
}

export interface ScopeSyncResponse {
    message:string;
    data:Scope[];
}