You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
488 B
18 lines
488 B
using System;
|
|
using NzbDrone.Api.REST;
|
|
using NzbDrone.Core.Tv;
|
|
|
|
namespace NzbDrone.Api.EpisodeFiles
|
|
{
|
|
public class EpisodeFileResource : RestResource
|
|
{
|
|
public Int32 SeriesId { get; set; }
|
|
public Int32 SeasonNumber { 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; }
|
|
}
|
|
}
|