mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-26 22:46:37 -04:00
12 lines
275 B
C#
12 lines
275 B
C#
using NzbDrone.Core.Datastore;
|
|
|
|
|
|
namespace NzbDrone.Core.RemotePathMappings
|
|
{
|
|
public class RemotePathMapping : ModelBase
|
|
{
|
|
public string Host { get; set; }
|
|
public string RemotePath { get; set; }
|
|
public string LocalPath { get; set; }
|
|
}
|
|
} |