1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-19 07:52:33 +02:00
Radarr/NzbDrone.Core/Datastore/ModelBase.cs

11 lines
199 B
C#
Raw Normal View History

2013-06-19 03:01:08 +02:00
using System.Diagnostics;
2013-02-05 05:07:07 +01:00
namespace NzbDrone.Core.Datastore
{
[DebuggerDisplay("{GetType()} ID = {Id}")]
public abstract class ModelBase
2013-02-05 05:07:07 +01:00
{
2013-03-24 05:58:23 +01:00
public int Id { get; set; }
2013-02-05 05:07:07 +01:00
}
}