mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2026-04-26 23:06:43 -04:00
12 lines
275 B
C#
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; }
|
|
}
|
|
}
|