1
0
mirror of https://gitlab.com/comunic/comunicapiv3 synced 2025-01-10 04:32:28 +00:00
comunicapiv3/src/data/movie.rs

14 lines
240 B
Rust
Raw Normal View History

2020-07-03 14:41:14 +00:00
//! # 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,
}