18 lines
281 B
Rust
18 lines
281 B
Rust
use uuid::Uuid;
|
|
|
|
pub enum LibraryItemType {
|
|
VIDEO,
|
|
FOLDER
|
|
}
|
|
|
|
pub struct LibraryItem {
|
|
pub id: Uuid,
|
|
pub name: String,
|
|
pub r#type: LibraryItemType,
|
|
}
|
|
|
|
pub struct ReadLibraryItem {
|
|
pub id: Option<Uuid>,
|
|
pub name: String,
|
|
pub r#type: LibraryItemType,
|
|
} |