mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-20 21:54:25 -04:00
11 lines
182 B
C#
11 lines
182 B
C#
using System.Linq;
|
|
|
|
namespace NzbDrone.Core.Datastore
|
|
{
|
|
public abstract class BaseRepositoryModel
|
|
{
|
|
[PetaPoco.Ignore]
|
|
public int OID { get; set; }
|
|
}
|
|
}
|