mirror of
https://github.com/Sonarr/Sonarr.git
synced 2026-04-21 22:05:38 -04:00
16 lines
440 B
C#
16 lines
440 B
C#
using System.Collections.Generic;
|
|
using NzbDrone.Core.Languages;
|
|
using NzbDrone.Core.Qualities;
|
|
|
|
namespace Sonarr.Api.V3.EpisodeFiles
|
|
{
|
|
public class EpisodeFileListResource
|
|
{
|
|
public List<int> EpisodeFileIds { get; set; }
|
|
public Language Language { get; set; }
|
|
public QualityModel Quality { get; set; }
|
|
public string SceneName { get; set; }
|
|
public string ReleaseGroup { get; set; }
|
|
}
|
|
}
|