1
0
Fork 0
mirror of https://github.com/Radarr/Radarr synced 2024-12-24 08:52:38 +00:00
Radarr/NzbDrone.Core/Datastore/BaseRepositoryModel.cs
2013-02-15 20:03:54 -08:00

14 lines
246 B
C#

using System.Linq;
using Eloquera.Client;
namespace NzbDrone.Core.Datastore
{
public abstract class BaseRepositoryModel
{
[ID]
private long _eqId;
[PetaPoco.Ignore]
public int Id { get; set; }
}
}