Files
Prowlarr/src/NzbDrone.Core/RemotePathMappings/RemotePathMapping.cs
T
2019-12-27 20:40:13 -05:00

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