tiempo-rs/src/models.rs

16 lines
253 B
Rust

use chrono::{DateTime, Utc};
pub struct Entry {
pub id: u64,
pub note: String,
pub start: DateTime<Utc>,
pub end: DateTime<Utc>,
pub sheet: String,
}
pub struct Meta {
pub id: u64,
pub key: String,
pub value: String,
}