mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-05-23 17:52:29 -04:00
20 lines
486 B
C#
20 lines
486 B
C#
using System;
|
|
|
|
namespace Jellyfin.Server.Implementations.FullSystemBackup;
|
|
|
|
/// <summary>
|
|
/// Manifest type for backups internal structure.
|
|
/// </summary>
|
|
internal class BackupManifest
|
|
{
|
|
public required Version ServerVersion { get; set; }
|
|
|
|
public required Version BackupEngineVersion { get; set; }
|
|
|
|
public required DateTimeOffset DateCreated { get; set; }
|
|
|
|
public required string[] DatabaseTables { get; set; }
|
|
|
|
public required BackupOptions Options { get; set; }
|
|
}
|