sonarr-repo-only/src/NzbDrone.Core/RootFolders/RootFolder.cs

17 lines
403 B
C#
Raw Normal View History

using System.Collections.Generic;
2013-02-05 04:07:07 +00:00
using NzbDrone.Core.Datastore;
2013-03-24 04:16:00 +00:00
2013-02-05 04:07:07 +00:00
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; }
}
}