aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Common
diff options
context:
space:
mode:
authorJPVenson <github@jpb.email>2025-05-19 03:39:04 +0300
committerGitHub <noreply@github.com>2025-05-18 18:39:04 -0600
commitfe2596dc0e389c0496a384cc1893fddd4742ed37 (patch)
tree8d215ed776cbf399ea5545a737858690e79f4cb1 /MediaBrowser.Common
parentcdbf4752b9834506a6782db357f95924902081a8 (diff)
Add Full system backup feature (#13945)
Diffstat (limited to 'MediaBrowser.Common')
-rw-r--r--MediaBrowser.Common/Configuration/IApplicationPaths.cs6
1 files changed, 6 insertions, 0 deletions
diff --git a/MediaBrowser.Common/Configuration/IApplicationPaths.cs b/MediaBrowser.Common/Configuration/IApplicationPaths.cs
index fa0d8247b..6d1a72b04 100644
--- a/MediaBrowser.Common/Configuration/IApplicationPaths.cs
+++ b/MediaBrowser.Common/Configuration/IApplicationPaths.cs
@@ -92,6 +92,12 @@ namespace MediaBrowser.Common.Configuration
string TrickplayPath { get; }
/// <summary>
+ /// Gets the path used for storing backup archives.
+ /// </summary>
+ /// <value>The backup path.</value>
+ string BackupPath { get; }
+
+ /// <summary>
/// Checks and creates all known base paths.
/// </summary>
void MakeSanityCheckOrThrow();