summaryrefslogtreecommitdiff
path: root/src/creator.rs
blob: b8fde1444bc32c0a11b0564e5b4f211bb86e1162 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Creator.
use serde::Deserialize;

/// A user that created another object.
#[derive(Debug, Deserialize, Clone)]
pub struct Creator
{
    /// User ID.
    pub id: u64,

    /// User name.
    pub name: String,
}