mirror of
https://github.com/Readarr/Readarr
synced 2026-01-16 20:43:23 +01:00
13 lines
220 B
C#
13 lines
220 B
C#
using System.Linq;
|
|
using Eloquera.Client;
|
|
|
|
namespace NzbDrone.Core.Datastore
|
|
{
|
|
public abstract class BaseRepositoryModel
|
|
{
|
|
[ID]
|
|
private long _eqId;
|
|
|
|
public int Id { get; set; }
|
|
}
|
|
}
|