diff options
| author | JPVenson <github@jpb.email> | 2025-04-21 05:06:50 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-04-20 20:06:50 -0600 |
| commit | a0931baa8eb879898f4bc4049176ed3bdb4d80d1 (patch) | |
| tree | 69bca19c69930fb83a166ae9944273c4dd66fdb9 /MediaBrowser.Model/System/SystemStorageInfo.cs | |
| parent | 5e4bd744c07d44d75c8e9eb7b6dc03b7ff4f147c (diff) | |
Add Api and startup check for sufficient storage capacity (#13888)
Diffstat (limited to 'MediaBrowser.Model/System/SystemStorageInfo.cs')
| -rw-r--r-- | MediaBrowser.Model/System/SystemStorageInfo.cs | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/MediaBrowser.Model/System/SystemStorageInfo.cs b/MediaBrowser.Model/System/SystemStorageInfo.cs new file mode 100644 index 000000000..42e7a37e0 --- /dev/null +++ b/MediaBrowser.Model/System/SystemStorageInfo.cs @@ -0,0 +1,56 @@ +using System.Collections.Generic; + +namespace MediaBrowser.Model.System; + +/// <summary> +/// Contains informations about the systems storage. +/// </summary> +public class SystemStorageInfo +{ + /// <summary> + /// Gets or sets the program data path. + /// </summary> + /// <value>The program data path.</value> + public required FolderStorageInfo ProgramDataFolder { get; set; } + + /// <summary> + /// Gets or sets the web UI resources path. + /// </summary> + /// <value>The web UI resources path.</value> + public required FolderStorageInfo WebFolder { get; set; } + + /// <summary> + /// Gets or sets the items by name path. + /// </summary> + /// <value>The items by name path.</value> + public required FolderStorageInfo ImageCacheFolder { get; set; } + + /// <summary> + /// Gets or sets the cache path. + /// </summary> + /// <value>The cache path.</value> + public required FolderStorageInfo CacheFolder { get; set; } + + /// <summary> + /// Gets or sets the log path. + /// </summary> + /// <value>The log path.</value> + public required FolderStorageInfo LogFolder { get; set; } + + /// <summary> + /// Gets or sets the internal metadata path. + /// </summary> + /// <value>The internal metadata path.</value> + public required FolderStorageInfo InternalMetadataFolder { get; set; } + + /// <summary> + /// Gets or sets the transcode path. + /// </summary> + /// <value>The transcode path.</value> + public required FolderStorageInfo TranscodingTempFolder { get; set; } + + /// <summary> + /// Gets or sets the storage informations of all libraries. + /// </summary> + public required IReadOnlyCollection<LibraryStorageInfo> Libraries { get; set; } +} |
