blob: e679e1e3b0585e427e2fdaf95f1f86c53e9bd4a5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
use super::date_time_utc::DateTimeUtc;
#[derive(Clone)]
pub struct Transaction {
pub id: i32,
pub description: String,
pub payee: String,
pub quantity: i32,
pub date: DateTimeUtc,
pub account_id: i32,
}
|