Lidarr/NzbDrone.Core/RootFolders/RootFolder.cs

16 lines
363 B
C#
Raw Normal View History

using System.Collections.Generic;
2013-02-05 04:07:07 +00:00
using NzbDrone.Core.Datastore;
using Sqo.Attributes;
2013-02-05 04:07:07 +00:00
namespace NzbDrone.Core.RootFolders
{
2013-02-05 04:07:07 +00:00
public class RootFolder : BaseRepositoryModel
{
public string Path { get; set; }
[Ignore]
public ulong FreeSpace { get; set; }
public List<UnmappedFolder> UnmappedFolders { get; set; }
}
2011-04-10 02:44:01 +00:00
}