blob: c76c0194f84727b9fcd7db2ec85a86cf225e13c9 [file] [log] [blame]
#pragma once
#include <string>
#include <vector>
namespace interfaces
{
class Trigger
{
public:
virtual ~Trigger() = default;
virtual std::string getId() const = 0;
virtual std::string getPath() const = 0;
};
} // namespace interfaces