/* additional types for expenses
*/
#pragma once
typedef enum BotCommand {
BOT_CMD_IN,
BOT_CMD_OUT,
BOT_CMD_DELETE,
BOT_CMD_REPORT
} BotCommand;
typedef enum BotReportTimespan {
BOT_TS_DAILY,
BOT_TS_WEEKLY,
BOT_TS_MONTHLY,
BOT_TS_YEARLY
} BotReportTimespan;