mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-26 20:11:49 +02:00
21 lines
602 B
C#
21 lines
602 B
C#
using System;
|
|
using NzbDrone.Api.REST;
|
|
using NzbDrone.Core.Qualities;
|
|
|
|
namespace NzbDrone.Api.EpisodeFiles
|
|
{
|
|
public class EpisodeFileResource : RestResource
|
|
{
|
|
public Int32 SeriesId { get; set; }
|
|
public Int32 SeasonNumber { get; set; }
|
|
public String RelativePath { get; set; }
|
|
public String Path { get; set; }
|
|
public Int64 Size { get; set; }
|
|
public DateTime DateAdded { get; set; }
|
|
public String SceneName { get; set; }
|
|
public QualityModel Quality { get; set; }
|
|
|
|
public Boolean QualityCutoffNotMet { get; set; }
|
|
}
|
|
}
|