Radarr/src/NzbDrone.Api/RemotePathMappings/RemotePathMappingResource.cs

13 lines
293 B
C#
Raw Normal View History

using System;
using NzbDrone.Api.REST;
2014-10-03 04:40:32 +00:00
namespace NzbDrone.Api.RemotePathMappings
{
public class RemotePathMappingResource : RestResource
{
public string Host { get; set; }
public string RemotePath { get; set; }
public string LocalPath { get; set; }
}
}