Skip to main content

mycommon_utils/database/common/
captcha.rs

1use serde::Serialize;
2
3#[derive(Debug, Serialize)]
4pub struct CaptchaImage {
5    pub captcha_on_off: bool,
6    pub uuid: String,
7    pub img: String,
8}