mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2026-04-21 22:25:03 -04:00
13 lines
313 B
C#
13 lines
313 B
C#
using NzbDrone.Core.Datastore;
|
|
|
|
namespace NzbDrone.Core.Applications
|
|
{
|
|
public class AppIndexerMap : ModelBase
|
|
{
|
|
public int IndexerId { get; set; }
|
|
public int AppId { get; set; }
|
|
public int RemoteIndexerId { get; set; }
|
|
public string RemoteIndexerName { get; set; }
|
|
}
|
|
}
|