mirror of
https://github.com/Lidarr/Lidarr
synced 2026-03-05 12:04:18 +01:00
12 lines
No EOL
275 B
C#
12 lines
No EOL
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; }
|
|
}
|
|
} |