mirror of
https://github.com/Readarr/Readarr
synced 2026-01-29 19:03:51 +01: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; }
|
|
}
|
|
}
|