mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-21 05:53:33 -07:00
moved rootdir to eloquera
This commit is contained in:
parent
0155de4d92
commit
9e4bb278ef
35 changed files with 398 additions and 565 deletions
|
@ -3,9 +3,21 @@ using PetaPoco;
|
|||
|
||||
namespace NzbDrone.Core.Repository
|
||||
{
|
||||
public interface IRootDir
|
||||
{
|
||||
int Id { get; set; }
|
||||
string Path { get; set; }
|
||||
|
||||
[ResultColumn]
|
||||
ulong FreeSpace { get; set; }
|
||||
|
||||
[Ignore]
|
||||
List<string> UnmappedFolders { get; set; }
|
||||
}
|
||||
|
||||
[TableName("RootDirs")]
|
||||
[PrimaryKey("Id", autoIncrement = true)]
|
||||
public class RootDir
|
||||
public class RootDir : IRootDir
|
||||
{
|
||||
public virtual int Id { get; set; }
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue