Skip to main content

shipd_core/models/
time_entry.rs

1#[derive(Debug, Clone, PartialEq)]
2pub struct TimeEntry {
3    pub id: i64,
4    pub task_id: i64,
5    pub started_at: String,
6    pub stopped_at: Option<String>,
7}