mirror of
https://github.com/Lidarr/Lidarr
synced 2025-12-22 00:05:12 +01:00
12 lines
259 B
C#
12 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; }
|
|
}
|
|
}
|