blob: 3415712e6d00a65058d26c58d02eec33cfc013ce [file] [log] [blame]
#pragma once
#include "types/report_types.hpp"
#include <string>
namespace interfaces
{
class Report
{
public:
virtual ~Report() = default;
virtual std::string getId() const = 0;
virtual std::string getPath() const = 0;
};
} // namespace interfaces