mirror of
https://github.com/lidarr/Lidarr
synced 2025-01-19 13:20:28 +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; }
|
|
}
|
|
}
|