using System;
namespace MediaBrowser.Controller.SystemBackupService;
///
/// Manifest type for backups internal structure.
///
public class BackupManifestDto
{
///
/// Gets or sets the jellyfin version this backup was created with.
///
public required Version ServerVersion { get; set; }
///
/// Gets or sets the backup engine version this backup was created with.
///
public required Version BackupEngineVersion { get; set; }
///
/// Gets or sets the date this backup was created with.
///
public required DateTimeOffset DateCreated { get; set; }
///
/// Gets or sets the path to the backup on the system.
///
public required string Path { get; set; }
///
/// Gets or sets the contents of the backup archive.
///
public required BackupOptionsDto Options { get; set; }
}