1
0
Fork 0
mirror of https://github.com/lidarr/Lidarr synced 2025-03-12 23:13:44 +00:00
Lidarr/src/NzbDrone.Core/Backup/Backup.cs
Mark McDowall c5bd8b27fb Backups
New: Backup drone's database and configuration from the UI
New: Download Backup files from the UI

Fixed: Run a database backup before upgrade
2014-07-06 20:10:51 -07:00

11 lines
218 B
C#

using System;
namespace NzbDrone.Core.Backup
{
public class Backup
{
public String Path { get; set; }
public BackupType Type { get; set; }
public DateTime Time { get; set; }
}
}