mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 00:12:30 +01: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; }
|
|
}
|
|
}
|