summaryrefslogtreecommitdiffstats
path: root/src/entities/report.rs
blob: 017a7547a02611f1f6981904ae87aba1a81499db (plain)
1
2
3
4
5
6
7
8
9
10
11
//! module containing information about a finished report of a user.
use serde::Deserialize;

/// A struct containing info about a report.
#[derive(Debug, Clone, Deserialize, PartialEq)]
pub struct Report {
    /// The ID of the report.
    pub id: String,
    /// The action taken in response to the report.
    pub action_taken: String,
}