mirror of
https://github.com/Radarr/Radarr
synced 2025-03-12 23:27:26 +00:00
Still need to remove System.Data.Sqlite, prefer an option in OrmLite to pluralize table names.
15 lines
No EOL
393 B
C#
15 lines
No EOL
393 B
C#
using System.Linq;
|
|
using NzbDrone.Core.Datastore;
|
|
using ServiceStack.DataAnnotations;
|
|
|
|
namespace NzbDrone.Core.ReferenceData
|
|
{
|
|
[Alias("SceneMappings")]
|
|
public class SceneMapping : ModelBase
|
|
{
|
|
public string CleanTitle { get; set; }
|
|
public int TvdbId { get; set; }
|
|
public string SceneName { get; set; }
|
|
public int SeasonNumber { get; set; }
|
|
}
|
|
} |