diff options
Diffstat (limited to 'dichroism/src/models/photo_set.rs')
-rw-r--r-- | dichroism/src/models/photo_set.rs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/dichroism/src/models/photo_set.rs b/dichroism/src/models/photo_set.rs new file mode 100644 index 0000000..2f6c128 --- /dev/null +++ b/dichroism/src/models/photo_set.rs @@ -0,0 +1,8 @@ +#[derive(Debug, Queryable, Clone)] +pub struct PhotoSet { + pub id: i32, + pub base: i32, + pub fullsize: i32, + pub thumbnail: i32, + pub original: i32, +} |