mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-16 10:03:51 -07: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; }
|
|
}
|
|
}
|