mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-05-13 08:37:07 +00:00
Update FolderStorageInfo record
This commit is contained in:
parent
434ebc8b11
commit
418beafebb
1 changed files with 8 additions and 3 deletions
|
|
@ -11,17 +11,22 @@ public record FolderStorageInfo
|
|||
public required string Path { get; init; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets the free space of the underlying storage device of the <see cref="Path"/>.
|
||||
/// Gets the fully resolved path of the folder in question (interpolating any symlinks if present)
|
||||
/// </summary>
|
||||
public required string ResolvedPath { get; init; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets the free space of the underlying storage device of the <see cref="ResolvedPath"/>.
|
||||
/// </summary>
|
||||
public long FreeSpace { get; init; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets the used space of the underlying storage device of the <see cref="Path"/>.
|
||||
/// Gets the used space of the underlying storage device of the <see cref="ResolvedPath"/>.
|
||||
/// </summary>
|
||||
public long UsedSpace { get; init; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets the kind of storage device of the <see cref="Path"/>.
|
||||
/// Gets the kind of storage device of the <see cref="ResolvedPath"/>.
|
||||
/// </summary>
|
||||
public string? StorageType { get; init; }
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue