Financial app. Store receipts for things you pay. In Rust.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
205 B

use crate::commands::interface::Command;
use chrono::DateTime;
use chrono::Utc;
use rust_decimal::prelude::*;
pub struct AddExpense {
value: Decimal,
tags: Vec<String>,
date: DateTime<Utc>,
}