bazzar/web/src/model.rs

7 lines
90 B
Rust
Raw Normal View History

2022-05-05 16:30:25 +02:00
use crate::Page;
pub struct Model {
pub token: Option<String>,
pub page: Page,
}