mirror of
https://gitlab.com/comunic/comunicapiv3
synced 2024-12-28 22:48:51 +00:00
15 lines
307 B
Rust
15 lines
307 B
Rust
//! # Survey response
|
|
//!
|
|
//! This structure contains information about a single response to a survey
|
|
//!
|
|
//! @author Pierre Hubert
|
|
|
|
use crate::data::user::UserID;
|
|
|
|
pub struct SurveyResponse {
|
|
pub id: u64,
|
|
pub time_sent: u64,
|
|
pub user_id: UserID,
|
|
pub survey_id: u64,
|
|
pub choice_id: u64
|
|
} |