mirror of
https://github.com/Radarr/Radarr
synced 2026-01-29 02:42:14 +01:00
12 lines
239 B
C#
12 lines
239 B
C#
using System.Linq;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace NzbDrone.Core.Datastore
|
|
{
|
|
public abstract class ModelBase
|
|
{
|
|
[PetaPoco.Ignore]
|
|
[JsonProperty(PropertyName = "id")]
|
|
public int OID { get; set; }
|
|
}
|
|
}
|