1//! Types related to groups.
23use serde::Deserialize;
45/// A paperless group
6#[derive(Debug, Clone, Deserialize)]
7pub struct Group {
8/// Unique identifier of the group.
9pub id: crate::id::GroupId,
1011/// The name of the group.
12pub name: String,
13}