mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-18 21:35:51 -04:00
16 lines
363 B
C#
16 lines
363 B
C#
using System.Collections.Generic;
|
|
using NzbDrone.Core.Datastore;
|
|
using Sqo.Attributes;
|
|
|
|
namespace NzbDrone.Core.RootFolders
|
|
{
|
|
public class RootFolder : BaseRepositoryModel
|
|
{
|
|
public string Path { get; set; }
|
|
|
|
[Ignore]
|
|
public ulong FreeSpace { get; set; }
|
|
|
|
public List<UnmappedFolder> UnmappedFolders { get; set; }
|
|
}
|
|
} |