mirror of
https://github.com/Sonarr/Sonarr
synced 2026-02-06 06:42:26 +01: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; }
|
|
}
|
|
}
|