mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-20 21:54:25 -04:00
13 lines
293 B
C#
13 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; }
|
|
}
|
|
}
|