1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-21 22:05:38 -04:00
Files
Sonarr/src/NzbDrone.Core/Download/Clients/RQBit/RQBitFile.cs
T
Alexander WB 37cb978f18 New: RQBit download client
Co-authored-by: Mark Mendoza <markolo25@gmail.com>
2025-09-01 15:08:03 -07:00

9 lines
199 B
C#

namespace NzbDrone.Core.Download.Clients.RQBit;
public class RQBitFile
{
public string FileName { get; set; }
public int FileSize { get; set; }
public int FileDownloaded { get; set; }
}