Skip to main content

intelli_shell/model/
release.rs

1use chrono::{DateTime, Utc};
2use semver::Version;
3
4/// Represents an intelli-shell release
5#[derive(Debug, Clone)]
6pub struct IntelliShellRelease {
7    pub tag: String,
8    pub version: Version,
9    pub title: String,
10    pub body: Option<String>,
11    pub published_at: DateTime<Utc>,
12    pub fetched_at: DateTime<Utc>,
13}