1
0
Fork 0
mirror of https://github.com/Radarr/Radarr synced 2025-02-23 14:51:17 +00:00
Radarr/NzbDrone.Core/RootFolders/RootFolder.cs
2013-02-16 20:48:19 -08:00

16 lines
No EOL
355 B
C#

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