diff --git a/project/src/action.rs b/project/src/action.rs index d42b643..27af0d4 100644 --- a/project/src/action.rs +++ b/project/src/action.rs @@ -2,9 +2,9 @@ // Structures pub struct Transaction { - description: String, - date: String, - amount: f64, + pub description: String, + pub date: String, + pub amount: f64, } // Implementations