1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-03-29 18:15:37 -04:00
Files
Radarr/NzbDrone.Core/RootFolders/RootFolder.cs
2013-04-29 23:11:49 -07:00

15 lines
314 B
C#

using System.Collections.Generic;
using NzbDrone.Core.Datastore;
namespace NzbDrone.Core.RootFolders
{
public class RootFolder : ModelBase
{
public string Path { get; set; }
public long FreeSpace { get; set; }
public List<UnmappedFolder> UnmappedFolders { get; set; }
}
}