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.
Sonarr/src/NzbDrone.Core/MediaFiles/RenameEpisodeFilePreview.cs

15 lines
413 B

using System.Collections.Generic;
namespace NzbDrone.Core.MediaFiles
{
public class RenameEpisodeFilePreview
{
public int SeriesId { get; set; }
public int SeasonNumber { get; set; }
public List<int> EpisodeNumbers { get; set; }
public int EpisodeFileId { get; set; }
public string ExistingPath { get; set; }
public string NewPath { get; set; }
}
}