mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-12-14 11:23:42 +02:00
13 lines
235 B
C#
13 lines
235 B
C#
using System.Data;
|
|
using System.Diagnostics;
|
|
using Marr.Data;
|
|
|
|
namespace NzbDrone.Core.Datastore
|
|
{
|
|
[DebuggerDisplay("{GetType()} ID = {Id}")]
|
|
public abstract class ModelBase
|
|
{
|
|
public int Id { get; set; }
|
|
}
|
|
}
|