1
0
Fork 0
mirror of https://github.com/Radarr/Radarr synced 2025-01-04 22:42:11 +00:00
Radarr/NzbDrone.Core/ReferenceData/SceneMapping.cs

13 lines
328 B
C#
Raw Normal View History

2013-03-02 18:25:39 +00:00
using System.Linq;
using NzbDrone.Core.Datastore;
namespace NzbDrone.Core.ReferenceData
{
public class SceneMapping : ModelBase
{
public string CleanTitle { get; set; }
public int TvdbId { get; set; }
public string SceneName { get; set; }
public int SeasonNumber { get; set; }
}
}