kdeconnect-kde/smsapp/attachmentinfo.cpp
2022-09-11 23:21:58 +00:00

18 lines
437 B
C++

/**
* SPDX-FileCopyrightText: 2020 Aniket Kumar <anikketkumar786@gmail.com>
*
* SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
*/
#include "attachmentinfo.h"
AttachmentInfo::AttachmentInfo()
{
}
AttachmentInfo::AttachmentInfo(const Attachment &attachment)
: m_partID(attachment.partID())
, m_mimeType(attachment.mimeType())
, m_uniqueIdentifier(attachment.uniqueIdentifier())
{
}