mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-17 21:25:39 -04:00
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; }
|
|
}
|
|
}
|