mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-04-09 11:52:07 +01:00
Update FolderStorageInfo record
This commit is contained in:
@@ -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; }
|
||||
|
||||
|
||||
Reference in New Issue
Block a user