1
0
Fork 0
mirror of https://github.com/Sonarr/Sonarr synced 2024-12-28 18:59:54 +00:00
Sonarr/NzbDrone.Services.Api/SceneMapping/SceneMappingJsonModel.cs
2013-02-15 16:52:44 -08:00

29 lines
No EOL
688 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using MongoDB.Bson;
using MongoDB.Bson.Serialization.Attributes;
using Newtonsoft.Json;
namespace NzbDrone.Services.Api.SceneMapping
{
public class SceneMappingJsonModel
{
public String MapId { get; set; }
public string CleanTitle { get; set; }
[JsonProperty(PropertyName = "Id")]
public int SeriesId { get; set; }
[JsonProperty(PropertyName = "Title")]
public string SceneName { get; set; }
[JsonProperty(PropertyName = "Season")]
public int SeasonNumber { get; set; }
public Boolean Public { get; set; }
}
}