mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-12-16 11:37:58 +02:00
14 lines
220 B
C#
14 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; }
|
|
}
|
|
}
|