2013-02-27 02:23:03 +00:00
|
|
|
using System.Diagnostics;
|
2013-02-23 21:29:22 +00:00
|
|
|
using System.Linq;
|
2013-02-18 03:18:25 +00:00
|
|
|
using Newtonsoft.Json;
|
2013-02-05 04:07:07 +00:00
|
|
|
|
|
|
|
namespace NzbDrone.Core.Datastore
|
|
|
|
{
|
2013-02-26 03:58:57 +00:00
|
|
|
[DebuggerDisplay("{GetType()} ID = {Id}")]
|
2013-02-18 03:18:25 +00:00
|
|
|
public abstract class ModelBase
|
2013-02-05 04:07:07 +00:00
|
|
|
{
|
2013-02-16 04:03:54 +00:00
|
|
|
[PetaPoco.Ignore]
|
2013-02-26 03:58:57 +00:00
|
|
|
|
|
|
|
[JsonIgnore]
|
|
|
|
public int Id
|
|
|
|
{
|
|
|
|
get { return OID; }
|
|
|
|
set { OID = value; }
|
|
|
|
}
|
|
|
|
|
2013-02-18 03:18:25 +00:00
|
|
|
[JsonProperty(PropertyName = "id")]
|
2013-02-26 07:47:29 +00:00
|
|
|
private int OID;
|
2013-02-05 04:07:07 +00:00
|
|
|
}
|
|
|
|
}
|