mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-24 22:35:49 -04:00
c9da7ee0c9
(cherry picked from commit 81d2b18ce1c079c2a9dc3de037c9dceea16733fd) Closes #8065
16 lines
402 B
C#
16 lines
402 B
C#
using System.Collections.Generic;
|
|
using NzbDrone.Core.Datastore;
|
|
|
|
namespace NzbDrone.Core.RootFolders
|
|
{
|
|
public class RootFolder : ModelBase
|
|
{
|
|
public string Path { get; set; }
|
|
public bool Accessible { get; set; }
|
|
public long? FreeSpace { get; set; }
|
|
public long? TotalSpace { get; set; }
|
|
|
|
public List<UnmappedFolder> UnmappedFolders { get; set; }
|
|
}
|
|
}
|