diff options
Diffstat (limited to 'backend/importers/actualbudget/src/models/actualbudget_account.rs')
| -rw-r--r-- | backend/importers/actualbudget/src/models/actualbudget_account.rs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/backend/importers/actualbudget/src/models/actualbudget_account.rs b/backend/importers/actualbudget/src/models/actualbudget_account.rs new file mode 100644 index 0000000..b3d00ac --- /dev/null +++ b/backend/importers/actualbudget/src/models/actualbudget_account.rs @@ -0,0 +1,8 @@ +use diesel::prelude::{Queryable, Selectable}; + +#[derive(Queryable, Selectable)] +#[diesel(table_name = crate::schema::accounts)] +pub struct ActualbudgetAccount { + pub id: String, + pub name: String, +} |
