1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-16 11:37:58 +02:00
Sonarr/NzbDrone.Core/Datastore/ModelBase.cs

13 lines
235 B
C#
Raw Normal View History

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