structemit/defs.structemit
2025-03-18 02:10:45 +01:00

16 lines
226 B
Rust

struct Product<T> {
product_id: int,
name: str,
price_dkk_cent: int,
amount: T,
}
struct Receipt {
receipt_id: int,
timestamp: str,
products: Product<int>[],
}
// vim: syntax=rust commentstring=//\ %s