Files
Prowlarr-Prowlarr/NzbDrone.Core/Model/MisnamedEpisodeModel.cs
2012-07-09 21:37:24 -07:00

16 lines
396 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace NzbDrone.Core.Model.Metadata
{
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; }
}
}