1
0
Fork 0
mirror of https://github.com/lidarr/Lidarr synced 2025-01-03 21:45:05 +00:00
Lidarr/NzbDrone.Core/RootFolders/RootFolder.cs
2013-02-17 19:18:25 -08:00

16 lines
No EOL
353 B
C#

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