mirror of
https://github.com/lidarr/Lidarr
synced 2024-12-31 20:15:55 +00:00
12 lines
No EOL
256 B
C#
12 lines
No EOL
256 B
C#
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; }
|
|
}
|
|
} |