Readarr/src/NzbDrone.Api/RemotePathMappings/RemotePathMappingResource.cs
2014-10-02 21:40:32 -07:00

12 lines
293 B
C#

using System;
using NzbDrone.Api.REST;
namespace NzbDrone.Api.RemotePathMappings
{
public class RemotePathMappingResource : RestResource
{
public String Host { get; set; }
public String RemotePath { get; set; }
public String LocalPath { get; set; }
}
}