mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-07-03 20:57:19 -04:00
27 lines
641 B
C++
27 lines
641 B
C++
#pragma once
|
|
|
|
#include "ContactRecord.hpp"
|
|
#include "SwitchData.hpp"
|
|
#include "ThreadRecord.hpp"
|
|
#include <Database/Database.hpp>
|
|
#include <memory>
|
|
#include <string>
|
|
|
|
class SMSThreadData : public gui::SwitchData
|
|
{
|
|
public:
|
|
std::shared_ptr<ThreadRecord> thread = nullptr;
|
|
SMSThreadData(std::shared_ptr<ThreadRecord> thread) : thread(thread)
|
|
{}
|
|
virtual ~SMSThreadData() = default;
|
|
};
|
|
|
|
class SMSSendRequest : public gui::SwitchData
|
|
{
|
|
public:
|
|
std::shared_ptr<ContactRecord> contact = nullptr;
|
|
SMSSendRequest(std::shared_ptr<ContactRecord> contact) : contact(contact)
|
|
{}
|
|
virtual ~SMSSendRequest() = default;
|
|
};
|