1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-19 16:01:46 +02:00
Radarr/NzbDrone.Core/Datastore/ModelBase.cs
2013-03-25 23:19:55 -07:00

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; }
}
}