1
0
Fork 0
mirror of https://github.com/lidarr/Lidarr synced 2024-12-26 17:47:08 +00:00
Lidarr/NzbDrone.Core/Model/EpisodeRenameModel.cs
2011-04-09 19:44:01 -07:00

12 lines
No EOL
306 B
C#

using NzbDrone.Core.Repository;
namespace NzbDrone.Core.Model
{
public class EpisodeRenameModel
{
public string SeriesName { get; set; }
public string Folder { get; set; }
public EpisodeFile EpisodeFile { get; set; }
public bool NewDownload { get; set; }
}
}