2013-02-27 02:28:55 +00:00
|
|
|
|
using System.Diagnostics;
|
2013-03-24 10:09:32 +00:00
|
|
|
|
using ServiceStack.DataAnnotations;
|
2013-02-05 04:07:07 +00:00
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Core.Datastore
|
|
|
|
|
{
|
2013-02-26 03:58:57 +00:00
|
|
|
|
[DebuggerDisplay("{GetType()} ID = {Id}")]
|
2013-02-18 03:18:25 +00:00
|
|
|
|
public abstract class ModelBase
|
2013-02-05 04:07:07 +00:00
|
|
|
|
{
|
2013-03-24 10:09:32 +00:00
|
|
|
|
[AutoIncrement]
|
2013-03-24 04:58:23 +00:00
|
|
|
|
public int Id { get; set; }
|
2013-02-05 04:07:07 +00:00
|
|
|
|
}
|
|
|
|
|
}
|