mirror of
https://github.com/Radarr/Radarr
synced 2026-01-15 12:03:08 +01:00
14 lines
245 B
C#
14 lines
245 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Eloquera.Client;
|
|
|
|
namespace NzbDrone.Core.Datastore
|
|
{
|
|
public abstract class BaseRepositoryModel
|
|
{
|
|
[ID]
|
|
public int Id;
|
|
}
|
|
}
|