diff options
author | ouwou <26526779+ouwou@users.noreply.github.com> | 2023-12-15 01:16:11 -0500 |
---|---|---|
committer | ouwou <26526779+ouwou@users.noreply.github.com> | 2023-12-15 01:16:11 -0500 |
commit | 4bce7b7523caa26023b1a2f5e02e6646ed29f5e0 (patch) | |
tree | 1c029a16d83ba64209511fd05b9276251821e051 /src/discord/chatsubmitparams.hpp | |
parent | 23bf237e4e7dd008df8ff32da31878d1b990f5bf (diff) | |
download | abaddon-portaudio-4bce7b7523caa26023b1a2f5e02e6646ed29f5e0.tar.gz abaddon-portaudio-4bce7b7523caa26023b1a2f5e02e6646ed29f5e0.zip |
add ability to set image alt text (closes #253)
Diffstat (limited to 'src/discord/chatsubmitparams.hpp')
-rw-r--r-- | src/discord/chatsubmitparams.hpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/discord/chatsubmitparams.hpp b/src/discord/chatsubmitparams.hpp index e195189..45fbb2a 100644 --- a/src/discord/chatsubmitparams.hpp +++ b/src/discord/chatsubmitparams.hpp @@ -1,4 +1,5 @@ #pragma once +#include <optional> #include <vector> #include <string> #include <glibmm/ustring.h> @@ -15,6 +16,7 @@ struct ChatSubmitParams { Glib::RefPtr<Gio::File> File; AttachmentType Type; std::string Filename; + std::optional<std::string> Description; }; bool Silent = false; |