#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
};