1
2
3
4
5
6
7
8
9
10
use super::Timestamp;

/// An annotation for a task
#[derive(Debug, PartialEq, Eq, PartialOrd, Ord)]
pub struct Annotation {
    /// Time the annotation was made
    pub entry: Timestamp,
    /// Content of the annotation
    pub description: String,
}