mirror of
https://github.com/Readarr/Readarr
synced 2026-01-30 03:14:10 +01:00
12 lines
293 B
C#
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; }
|
|
}
|
|
}
|