mirror of
https://github.com/lidarr/Lidarr
synced 2024-12-28 10:37:41 +00:00
15 lines
No EOL
396 B
C#
15 lines
No EOL
396 B
C#
using System;
|
|
|
|
namespace NzbDrone.Core.Parser.Model
|
|
{
|
|
public class ReportInfo
|
|
{
|
|
public string Title { get; set; }
|
|
public long Size { get; set; }
|
|
public string NzbUrl { get; set; }
|
|
public string NzbInfoUrl { get; set; }
|
|
public String Indexer { get; set; }
|
|
public int Age { get; set; }
|
|
public string ReleaseGroup { get; set; }
|
|
}
|
|
} |