mirror of
https://gitlab.com/comunic/comunicapiv3
synced 2025-01-10 04:32:28 +00:00
14 lines
240 B
Rust
14 lines
240 B
Rust
|
//! # Movie information
|
||
|
//!
|
||
|
//! @author Pierre Hubert
|
||
|
|
||
|
use crate::data::user::UserID;
|
||
|
|
||
|
pub struct Movie {
|
||
|
pub id: u64,
|
||
|
pub user_id: UserID,
|
||
|
pub name: String,
|
||
|
pub uri: String,
|
||
|
pub file_type: String,
|
||
|
pub size: usize,
|
||
|
}
|