1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2025-01-21 11:02:01 +02:00

11 lines
199 B
C#
Raw Normal View History

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