tmtd/src/task.rs
2022-05-11 11:26:44 +02:00

51 lines
1.3 KiB
Rust

/*
* tmtd - Suckless To Do list
* Copyright (C) 2022 C4TG1RL5
*
* This program is free software: you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the Free
* Software Foundation, either version 3 of the License, or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
* more details.
*
* You should have received a copy of the GNU General Public License along with
* this program. If not, see <http://www.gnu.org/licenses/>.
*/
use serde::Deserialize;
#[derive(Debug, Deserialize)]
pub struct CreateTask {
pub title: String,
pub status: String,
pub assignee: String,
pub description: String,
}
#[derive(Debug, Deserialize)]
pub struct MoveTask {
pub category: String,
pub task_id: String,
}
#[derive(Debug, Deserialize)]
pub struct SortTask {
pub category: String,
}
#[derive(Deserialize)]
pub struct Login {
pub username: String,
pub password: String,
}
#[derive(Deserialize)]
pub struct Register {
pub username: String,
pub password: String,
}