mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-16 10:03:51 -07: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; }
|
|
}
|
|
}
|