Files
Prowlarr/src/NzbDrone.Core/Applications/AppIndexerMap.cs
T
2021-08-14 23:50:47 -04:00

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