1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2025-01-19 10:54:05 +02:00

13 lines
235 B
C#
Raw Normal View History

2013-03-24 20:51:32 -07:00
using System.Data;
using System.Diagnostics;
using Marr.Data;
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
}
}