ofdb_entities/
tag.rs

1#[derive(Debug, Clone, Eq, PartialEq)]
2pub struct Tag {
3    pub id: String,
4}
5
6pub type TagCount = u64;
7
8#[derive(Debug, Clone, Eq, PartialEq)]
9pub struct TagFrequency(pub String, pub TagCount);