1
0
Fork 0
mirror of https://github.com/lidarr/Lidarr synced 2024-12-29 02:55:38 +00:00
Lidarr/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

22 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;
}
}