1
0
Fork 0
mirror of https://github.com/Radarr/Radarr synced 2024-12-26 17:59:14 +00:00
Radarr/NzbDrone.Core/Datastore/ModelBase.cs
2013-06-18 18:01:08 -07:00

10 lines
199 B
C#

using System.Diagnostics;
namespace NzbDrone.Core.Datastore
{
[DebuggerDisplay("{GetType()} ID = {Id}")]
public abstract class ModelBase
{
public int Id { get; set; }
}
}