mirror of
https://github.com/Radarr/Radarr
synced 2024-12-24 08:52:38 +00:00
10 lines
182 B
C#
10 lines
182 B
C#
using System.Linq;
|
|
|
|
namespace NzbDrone.Core.Datastore
|
|
{
|
|
public abstract class BaseRepositoryModel
|
|
{
|
|
[PetaPoco.Ignore]
|
|
public int OID { get; set; }
|
|
}
|
|
}
|