tas/src/domain.rs

8 lines
116 B
Rust

pub type TaskId = usize;
pub struct Task {
pub name: String,
pub link: Option<String>,
// created_at
}