mirror of
https://github.com/lidarr/Lidarr
synced 2025-01-31 19:32:51 +00:00
14 lines
246 B
C#
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; }
|
|
}
|
|
}
|