mirror of
https://github.com/Radarr/Radarr
synced 2024-12-26 17:59:14 +00:00
12 lines
235 B
C#
12 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; }
|
|
}
|
|
}
|