aboutsummaryrefslogtreecommitdiffstats
path: root/src/types.h
blob: 6cef8aa23a3760f7303e4639ee4e2fa69f70ab3a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#pragma once

struct ViewStatusTypes {
    bool includePublic = true;
    bool includeUnlisted = true;
    bool includePrivate = true;
    bool includeDirect = true;
    bool includeReblogs = true;
    bool onlyWithAttachment = false;
};

enum StatusType {
    UNKNOWN = 0,
    PUBLIC,
    UNLISTED,
    PRIVATE,
    DIRECT,
    REBLOG
};