2011-09-04 03:05:44 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
2012-07-12 18:30:43 +00:00
|
|
|
|
namespace NzbDrone.Core.Model
|
2011-09-04 03:05:44 +00:00
|
|
|
|
{
|
|
|
|
|
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; }
|
|
|
|
|
}
|
|
|
|
|
}
|