1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-19 16:01:46 +02:00
Radarr/NzbDrone.Core/Datastore/ModelBase.cs

21 lines
415 B
C#
Raw Normal View History

2013-02-27 03:28:55 +01:00
using System.Diagnostics;
2013-02-23 22:29:22 +01:00
using System.Linq;
using Newtonsoft.Json;
2013-02-05 05:07:07 +01:00
namespace NzbDrone.Core.Datastore
{
[DebuggerDisplay("{GetType()} ID = {Id}")]
public abstract class ModelBase
2013-02-05 05:07:07 +01:00
{
[JsonIgnore]
public int Id
{
get { return OID; }
set { OID = value; }
}
[JsonProperty(PropertyName = "id")]
2013-02-27 03:28:55 +01:00
public int OID { get; set; }
2013-02-05 05:07:07 +01:00
}
}