mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2026-04-26 23:06:43 -04:00
New: Added global Remote Path mapping table to replace individual Local Category Path settings.
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using NzbDrone.Core.Datastore;
|
||||
|
||||
|
||||
namespace NzbDrone.Core.RemotePathMappings
|
||||
{
|
||||
public class RemotePathMapping : ModelBase
|
||||
{
|
||||
public String Host { get; set; }
|
||||
public String RemotePath { get; set; }
|
||||
public String LocalPath { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user