summaryrefslogtreecommitdiff
path: root/dichroism/src/models/photo_set.rs
blob: 2f6c128e575b01347236f90e0f6be8f49b8c9ad7 (plain) (blame)
1
2
3
4
5
6
7
8
#[derive(Debug, Queryable, Clone)]
pub struct PhotoSet {
    pub id: i32,
    pub base: i32,
    pub fullsize: i32,
    pub thumbnail: i32,
    pub original: i32,
}