mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-21 22:05:43 -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; }
|
|
}
|
|
}
|