1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-16 11:37:58 +02:00
Sonarr/NzbDrone.Core/RootFolders/RootFolder.cs

16 lines
355 B
C#
Raw Normal View History

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