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