Skip to main content

j_agent/tools/todo/
entity.rs

1use serde::{Deserialize, Serialize};
2
3/// Todo 项目数据结构
4#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
5pub struct TodoItem {
6    pub id: String,
7    pub content: String,
8    pub status: String, // "pending" | "in_progress" | "completed" | "cancelled"
9}