1
0
Fork 0
mirror of https://github.com/Sonarr/Sonarr synced 2024-12-27 02:07:41 +00:00
Sonarr/NzbDrone.Core/RootFolders/RootFolder.cs
2013-03-25 23:19:51 -07:00

15 lines
No EOL
315 B
C#

using System.Collections.Generic;
using NzbDrone.Core.Datastore;
namespace NzbDrone.Core.RootFolders
{
public class RootFolder : ModelBase
{
public string Path { get; set; }
public ulong FreeSpace { get; set; }
public List<UnmappedFolder> UnmappedFolders { get; set; }
}
}