Lidarr/NzbDrone.Core/Datastore/BaseRepositoryModel.cs

11 lines
182 B
C#
Raw Normal View History

using System.Linq;
2013-02-05 04:07:07 +00:00
namespace NzbDrone.Core.Datastore
{
public abstract class BaseRepositoryModel
{
2013-02-16 04:03:54 +00:00
[PetaPoco.Ignore]
2013-02-17 01:52:40 +00:00
public int OID { get; set; }
2013-02-05 04:07:07 +00:00
}
}