Basic Application Syncing

This commit is contained in:
Qstick
2020-10-22 14:00:04 -04:00
parent 47fbab02c5
commit feba96e8e0
16 changed files with 363 additions and 31 deletions
@@ -0,0 +1,11 @@
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; }
}
}