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

15 lines
246 B
C#
Raw Normal View History

2013-02-05 05:07:07 +01:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Eloquera.Client;
namespace NzbDrone.Core.Datastore
{
public abstract class BaseRepositoryModel
{
[ID]
public long Id;
2013-02-05 05:07:07 +01:00
}
}