1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-11-09 12:32:31 +01:00
Radarr/NzbDrone.Core/Datastore/ModelBase.cs
Mark McDowall bfc026128d OID changed to a field
DeleteEpsidoesNotInTvdb disabled for now since its broken
2013-02-25 23:47:29 -08:00

23 lines
430 B
C#

using System.Diagnostics;
using System.Linq;
using Newtonsoft.Json;
namespace NzbDrone.Core.Datastore
{
[DebuggerDisplay("{GetType()} ID = {Id}")]
public abstract class ModelBase
{
[PetaPoco.Ignore]
[JsonIgnore]
public int Id
{
get { return OID; }
set { OID = value; }
}
[JsonProperty(PropertyName = "id")]
private int OID;
}
}