summaryrefslogtreecommitdiffstats
path: root/src/entities/list.rs
blob: 2bee202a7bf3acd5224e0701f190553707df0bbd (plain)
1
2
3
4
5
6
7
use serde::Deserialize;
/// Used for ser/de of list resources
#[derive(Clone, Debug, Deserialize, PartialEq)]
pub struct List {
    id: String,
    title: String,
}