1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2025-01-19 10:54:05 +02:00

15 lines
314 B
C#
Raw Normal View History

using System.Collections.Generic;
2013-02-04 20:07:07 -08:00
using NzbDrone.Core.Datastore;
2013-03-23 21:16:00 -07:00
2013-02-04 20:07:07 -08: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-09 19:44:01 -07:00
}