mirror of
https://github.com/Sonarr/Sonarr
synced 2025-01-01 12:45:03 +00:00
10 lines
199 B
C#
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; }
|
|
}
|
|
}
|