Radarr/src/NzbDrone.Core/RemotePathMappings/RemotePathMapping.cs

12 lines
275 B
C#

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