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

13 lines
239 B
C#
Raw Normal View History

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