mirror of
https://github.com/Palm1r/QodeAssist.git
synced 2026-05-30 02:49:12 -04:00
17 lines
338 B
C++
17 lines
338 B
C++
// Copyright (C) 2025-2026 Petr Mironychev
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
#pragma once
|
|
|
|
#include <QObject>
|
|
#include <QtQmlIntegration>
|
|
|
|
namespace QodeAssist::Chat {
|
|
Q_NAMESPACE
|
|
QML_NAMED_ELEMENT(MessagePartType)
|
|
|
|
enum class MessagePartType { Code, Text, Image };
|
|
Q_ENUM_NS(MessagePartType)
|
|
|
|
} // namespace QodeAssist::Chat
|