mirror of
https://github.com/Readarr/Readarr
synced 2026-01-11 10:06:34 +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; }
|
|
}
|
|
}
|