mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-17 17:14:18 +02:00
16 lines
381 B
C#
16 lines
381 B
C#
using System;
|
|
using NzbDrone.Core.Backup;
|
|
using Prowlarr.Http.REST;
|
|
|
|
namespace Prowlarr.Api.V1.System.Backup
|
|
{
|
|
public class BackupResource : RestResource
|
|
{
|
|
public string Name { get; set; }
|
|
public string Path { get; set; }
|
|
public BackupType Type { get; set; }
|
|
public long Size { get; set; }
|
|
public DateTime Time { get; set; }
|
|
}
|
|
}
|