mirror of
https://github.com/Sonarr/Sonarr.git
synced 2026-04-21 22:05:38 -04:00
37cb978f18
Co-authored-by: Mark Mendoza <markolo25@gmail.com>
9 lines
199 B
C#
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; }
|
|
}
|