stoptime-rs/src/models.rs

14 lines
315 B
Rust

//! The application models.
mod company_info;
mod customer;
mod invoice;
mod task;
mod time_entry;
pub use company_info::{CompanyInfo, NewCompanyInfo};
pub use customer::{Customer, NewCustomer};
pub use invoice::{Invoice, NewInvoice};
pub use task::{NewTask, Task};
pub use time_entry::{NewTimeEntry, TimeEntry};