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

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

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