mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-10 13:02:47 +01:00
7603d8e1ba
model tables are automatically created.
13 lines
259 B
C#
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; }
|
|
}
|
|
}
|