mirror of
https://github.com/Sonarr/Sonarr.git
synced 2026-04-27 23:06:29 -04:00
21 lines
594 B
C#
21 lines
594 B
C#
using System;
|
|
using NzbDrone.Api.REST;
|
|
using NzbDrone.Core.Qualities;
|
|
|
|
namespace NzbDrone.Api.EpisodeFiles
|
|
{
|
|
public class EpisodeFileResource : RestResource
|
|
{
|
|
public int SeriesId { get; set; }
|
|
public int SeasonNumber { get; set; }
|
|
public string RelativePath { get; set; }
|
|
public string Path { get; set; }
|
|
public long Size { get; set; }
|
|
public DateTime DateAdded { get; set; }
|
|
public string SceneName { get; set; }
|
|
public QualityModel Quality { get; set; }
|
|
|
|
public bool QualityCutoffNotMet { get; set; }
|
|
}
|
|
}
|