feat: MovieDto enrichment, movie detail page, PWA, watchlist, watchlist federation
This commit is contained in:
12
crates/domain/src/models/remote_watchlist.rs
Normal file
12
crates/domain/src/models/remote_watchlist.rs
Normal file
@@ -0,0 +1,12 @@
|
||||
use chrono::{DateTime, Utc};
|
||||
|
||||
#[derive(Clone, Debug)]
|
||||
pub struct RemoteWatchlistEntry {
|
||||
pub ap_id: String,
|
||||
pub actor_url: String,
|
||||
pub movie_title: String,
|
||||
pub release_year: u16,
|
||||
pub external_metadata_id: Option<String>,
|
||||
pub poster_url: Option<String>,
|
||||
pub added_at: DateTime<Utc>,
|
||||
}
|
||||
Reference in New Issue
Block a user