tas/src/domain.rs

6 lines
90 B
Rust

pub struct Task {
pub name: String,
pub link: Option<String>,
// created_at
}