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 // Structures
pub struct Transaction { pub struct Transaction {
description: String, pub description: String,
date: String, pub date: String,
amount: f64, pub amount: f64,
} }
// Implementations // Implementations