From 8b3b17f03ed8a3bfc9d72978f8b0134807132ee0 Mon Sep 17 00:00:00 2001 From: ConfuSomu Date: Mon, 26 Dec 2022 18:18:21 -0500 Subject: Implement initial list of statuses --- src/types.h | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 src/types.h (limited to 'src/types.h') diff --git a/src/types.h b/src/types.h new file mode 100644 index 0000000..e193216 --- /dev/null +++ b/src/types.h @@ -0,0 +1,9 @@ +#pragma once + +struct ViewTootTypes { + bool includePublic = true; + bool includeUnlisted = true; + bool includePrivate = true; + bool includeDirect = true; + bool onlyWithAttachment = false; +}; -- cgit v1.2.3-54-g00ecf