1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use crate::sites::site::SiteId;

pub struct Page {
    url: String,
    name: String,
}

pub struct PageId {
    value: u8,
}

pub struct PageSite {
    page: PageId,
    site: SiteId,
}