1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-11-09 12:32:31 +01:00
Radarr/NzbDrone.Core/Repository/RootDir.cs

20 lines
434 B
C#
Raw Normal View History

using System.Collections.Generic;
2013-02-04 07:27:58 +01:00
using NzbDrone.Core.RootFolders;
using PetaPoco;
namespace NzbDrone.Core.Repository
{
2013-02-04 05:18:59 +01:00
[TableName("RootDirs")]
[PrimaryKey("Id", autoIncrement = true)]
2013-02-04 07:27:58 +01:00
public class RootDir : BaseModel
{
public string Path { get; set; }
[ResultColumn]
public ulong FreeSpace { get; set; }
[Ignore]
public List<string> UnmappedFolders { get; set; }
}
2011-04-10 04:44:01 +02:00
}