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

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

enum StatusType {
    PUBLIC,
    UNLISTED,
    PRIVATE,
    DIRECT
};