You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Prowlarr/src/NzbDrone.Core/Applications/AppIndexerMap.cs

13 lines
313 B

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; }
}
}