2019-05-24 10:25:55 +02:00
|
|
|
use crate::common::*;
|
|
|
|
|
|
|
|
#[derive(Deserialize, Serialize, Debug, PartialEq)]
|
2020-02-06 01:01:44 +01:00
|
|
|
pub(crate) struct FileInfo {
|
|
|
|
pub(crate) length: u64,
|
|
|
|
pub(crate) md5sum: Option<String>,
|
|
|
|
pub(crate) path: FilePath,
|
2019-05-24 10:25:55 +02:00
|
|
|
}
|