1
2
3
4
5
6
7
8
9
use uuid::Uuid;

#[derive(serde::Serialize)]
pub struct QrCode {
    pub id: Uuid,
    pub account_id: Uuid,
    pub slug: String,
    pub generation_data: String,
}