1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-11-10 13:02:47 +01:00
Radarr/NzbDrone.Core/Datastore/ModelBase.cs
kay.one 7603d8e1ba auto increment ID.
model tables are automatically created.
2013-03-25 23:19:53 -07:00

13 lines
259 B
C#

using System.Diagnostics;
using ServiceStack.DataAnnotations;
namespace NzbDrone.Core.Datastore
{
[DebuggerDisplay("{GetType()} ID = {Id}")]
public abstract class ModelBase
{
[AutoIncrement]
public int Id { get; set; }
}
}