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