Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Prowlarr/blame/commit/63cf7a3b8590f5c26f5ed228f376800bcf457233/NzbDrone.Services.Api/SceneMapping/SceneMappingJsonModel.cs
You should set ROOT_URL correctly, otherwise the web may not work correctly.
|
|
|
|
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; }
|
|
|
|
|
}
|
|
|
|
|
}
|