2022-11-27 14:44:43 +00:00
|
|
|
//! module containing information about a finished report of a user.
|
|
|
|
|
2022-12-07 20:58:28 +00:00
|
|
|
use serde::{Deserialize, Serialize};
|
2022-11-29 23:50:29 +00:00
|
|
|
|
2022-11-27 14:44:43 +00:00
|
|
|
/// A struct containing info about a report.
|
2022-12-07 20:58:28 +00:00
|
|
|
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
|
2022-11-27 14:44:43 +00:00
|
|
|
pub struct Report {
|
|
|
|
/// The ID of the report.
|
|
|
|
pub id: String,
|
|
|
|
/// The action taken in response to the report.
|
|
|
|
pub action_taken: String,
|
|
|
|
}
|