Lidarr/NzbDrone.Core/Datastore/ModelBase.cs

13 lines
239 B
C#
Raw Normal View History

using System.Linq;
using Newtonsoft.Json;
2013-02-05 04:07:07 +00:00
namespace NzbDrone.Core.Datastore
{
public abstract class ModelBase
2013-02-05 04:07:07 +00:00
{
2013-02-16 04:03:54 +00:00
[PetaPoco.Ignore]
[JsonProperty(PropertyName = "id")]
2013-02-17 01:52:40 +00:00
public int OID { get; set; }
2013-02-05 04:07:07 +00:00
}
}