1
0
Fork 0
mirror of https://github.com/lidarr/Lidarr synced 2025-01-31 19:32:51 +00:00
Lidarr/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; }
}
}