mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-10-31 02:27:18 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			341 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			341 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| namespace Jellyfin.Server.Implementations.FullSystemBackup;
 | |
| 
 | |
| /// <summary>
 | |
| /// Defines the optional contents of the backup archive.
 | |
| /// </summary>
 | |
| internal class BackupOptions
 | |
| {
 | |
|     public bool Metadata { get; set; }
 | |
| 
 | |
|     public bool Trickplay { get; set; }
 | |
| 
 | |
|     public bool Subtitles { get; set; }
 | |
| 
 | |
|     public bool Database { get; set; }
 | |
| }
 |