1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-20 00:11:46 +02:00
Radarr/NzbDrone.Core/Datastore/BaseRepositoryModel.cs

14 lines
220 B
C#
Raw Normal View History

using System.Linq;
2013-02-05 05:07:07 +01:00
using Eloquera.Client;
namespace NzbDrone.Core.Datastore
{
public abstract class BaseRepositoryModel
{
[ID]
private long _eqId;
public int Id { get; set; }
2013-02-05 05:07:07 +01:00
}
}