1
0
Fork 0
mirror of https://github.com/Radarr/Radarr synced 2025-02-24 07:10:57 +00:00
Radarr/NzbDrone.Core/Model/MisnamedEpisodeModel.cs

12 lines
319 B
C#
Raw Normal View History

2013-07-19 03:47:55 +00:00
namespace NzbDrone.Core.Model
{
public class MisnamedEpisodeModel
{
public int EpisodeFileId { get; set; }
public int SeriesId { get; set; }
public string SeriesTitle { get; set; }
public string CurrentName { get; set; }
public string ProperName { get; set; }
}
}