1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-19 16:01:46 +02:00
Radarr/NzbDrone.Core/RootFolders/RootFolder.cs
2013-02-17 17:45:14 -08:00

16 lines
363 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<UnmappedFolder> UnmappedFolders { get; set; }
}
}