generated from OBJNULL/Dockerized-Rust
10 lines
147 B
Rust
10 lines
147 B
Rust
// Libraries
|
|
|
|
// Structures
|
|
pub struct Transaction {
|
|
pub description: String,
|
|
pub date: String,
|
|
pub amount: f64,
|
|
}
|
|
|
|
// Implementations
|