mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-17 17:14:18 +02:00
add series works again, now includes title.
This commit is contained in:
@@ -4,11 +4,19 @@ using Newtonsoft.Json;
|
||||
|
||||
namespace NzbDrone.Core.Datastore
|
||||
{
|
||||
[DebuggerDisplay("ID = {OID}")]
|
||||
[DebuggerDisplay("{GetType()} ID = {Id}")]
|
||||
public abstract class ModelBase
|
||||
{
|
||||
[PetaPoco.Ignore]
|
||||
|
||||
[JsonIgnore]
|
||||
public int Id
|
||||
{
|
||||
get { return OID; }
|
||||
set { OID = value; }
|
||||
}
|
||||
|
||||
[JsonProperty(PropertyName = "id")]
|
||||
public int OID { get; set; }
|
||||
private int OID { get; set; }
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user