Sonarr/NzbDrone.Core/RootFolders/RootFolder.cs

20 lines
446 B
C#
Raw Normal View History

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