Made feilds public

This commit is contained in:
Maddox Werts 2025-04-18 15:54:38 -04:00
parent 8c18164dbd
commit 2150cb7f7a

View file

@ -2,9 +2,9 @@
// Structures
pub struct Transaction {
description: String,
date: String,
amount: f64,
pub description: String,
pub date: String,
pub amount: f64,
}
// Implementations