1
0
Fork 0
mirror of https://github.com/Radarr/Radarr synced 2025-01-02 13:24:33 +00:00
Radarr/NzbDrone.Core/RootFolders/UnmappedFolder.cs

12 lines
256 B
C#
Raw Normal View History

using System.Collections.Generic;
using NzbDrone.Core.Datastore;
using Sqo.Attributes;
namespace NzbDrone.Core.RootFolders
{
public class UnmappedFolder
{
public string Name { get; set; }
public string Path { get; set; }
}
}