budget/src/models/transaction.h

23 lines
352 B
C++

//
// Created by quentin on 2/2/23.
//
#ifndef BUDGET_TRANSACTION_H
#define BUDGET_TRANSACTION_H
#include <string>
namespace Budget::Models {
class Transaction {
public:
long long int id;
long double value;
std::string description;
std::string receipt;
long long int accountId;
long long int date;
};
}
#endif //BUDGET_TRANSACTION_H