use uuid::Uuid; pub struct GetWatchlistQuery { pub user_id: Uuid, pub limit: Option, pub offset: Option, } pub struct IsOnWatchlistQuery { pub user_id: Uuid, pub movie_id: Uuid, }