sonarr-repo-only/src/NzbDrone.Core/RootFolders/UnmappedFolder.cs

10 lines
215 B
C#
Raw Normal View History

namespace NzbDrone.Core.RootFolders
{
public class UnmappedFolder
{
public string Name { get; set; }
public string Path { get; set; }
public string RelativePath { get; set; }
}
2021-08-03 04:43:28 +00:00
}