Lidarr/NzbDrone.Core/RootFolders/RootFolder.cs

15 lines
315 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 long? FreeSpace { get; set; }
public List<UnmappedFolder> UnmappedFolders { get; set; }
}
2011-04-10 02:44:01 +00:00
}