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