Files
MuditaOS/module-db/queries/notifications/QueryNotificationsGet.cpp
Alek Rudnik 019b5cf719 Egd 3338 missed calls home scree notifications (#463)
* [EGD-3338] Missed calls home screen notifications
2020-06-25 23:42:42 +02:00

26 lines
553 B
C++

#include "QueryNotificationsGet.hpp"
namespace db::query::notifications
{
Get::Get(NotificationsRecord::Key key) : Query(Query::Type::Read), key(key)
{}
auto Get::debugInfo() const -> std::string
{
return "Get";
}
GetResult::GetResult(NotificationsRecord record) : record(record)
{}
auto GetResult::getResult() const -> NotificationsRecord
{
return record;
}
auto GetResult::debugInfo() const -> std::string
{
return "GetResult";
}
} // namespace db::query::notifications