Files
lootalot/lootalot_db/src/models/item.rs

9 lines
126 B
Rust

use crate::*;
#[derive(Debug, Queryable, Serialize)]
pub struct Item {
id: i32,
name: String,
base_value: i32,
}