diff options
| author | JPVenson <github@jpb.email> | 2025-06-04 01:49:41 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-06-03 16:49:41 -0600 |
| commit | d5672ce407dda5e6e2422a7ce7ea6ad561759001 (patch) | |
| tree | 18de4f39ae533012f36f42a569a392221097f7c1 /MediaBrowser.Controller | |
| parent | 0c46431cbb48850fae0e425e95692a1a9bbce427 (diff) | |
Add declarative backups for migrations (#14135)
Diffstat (limited to 'MediaBrowser.Controller')
| -rw-r--r-- | MediaBrowser.Controller/SystemBackupService/BackupOptionsDto.cs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/SystemBackupService/BackupOptionsDto.cs b/MediaBrowser.Controller/SystemBackupService/BackupOptionsDto.cs index 228839a1d..fc5a109f1 100644 --- a/MediaBrowser.Controller/SystemBackupService/BackupOptionsDto.cs +++ b/MediaBrowser.Controller/SystemBackupService/BackupOptionsDto.cs @@ -21,4 +21,9 @@ public class BackupOptionsDto /// Gets or sets a value indicating whether the archive contains the Subtitle contents. /// </summary> public bool Subtitles { get; set; } + + /// <summary> + /// Gets or sets a value indicating whether the archive contains the Database contents. + /// </summary> + public bool Database { get; set; } = true; } |
