1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-20 00:11:46 +02:00
Radarr/NzbDrone.Core/RootFolders/RootFolder.cs

15 lines
314 B
C#
Raw Normal View History

using System.Collections.Generic;
2013-02-05 05:07:07 +01:00
using NzbDrone.Core.Datastore;
2013-03-24 05:16:00 +01:00
2013-02-05 05:07:07 +01:00
namespace NzbDrone.Core.RootFolders
{
public class RootFolder : ModelBase
{
public string Path { get; set; }
public long FreeSpace { get; set; }
public List<UnmappedFolder> UnmappedFolders { get; set; }
}
2011-04-10 04:44:01 +02:00
}