Sonarr/NzbDrone.Core/Datastore/ModelBase.cs

13 lines
259 B
C#
Raw Normal View History

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