mirror of
https://github.com/Radarr/Radarr
synced 2025-03-12 23:27:26 +00:00
13 lines
No EOL
328 B
C#
13 lines
No EOL
328 B
C#
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; }
|
|
}
|
|
} |