1
0
forked from BRT/arc
arc/models/db/TransactionInfo.h
trnsmkot 2ac5dcc5e5 Refactor includes and add AccountInfoScreener functionality
Updated include paths for consistent structure under the `db` directory. Added `AccountInfoScreener` for parsing card data using Tesseract OCR and enhanced related models. Removed unused code and simplified main workflow.
2025-04-21 23:12:21 +07:00

11 lines
163 B
C

#pragma once
#include <QDateTime>
struct TransactionInfo {
int id;
int accountId;
double amount;
QString description;
QDateTime timestamp;
};