mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 00:12:30 +01:00
e03ab2ebea
the tries interop.
15 lines
314 B
C#
15 lines
314 B
C#
using System.Collections.Generic;
|
|
using NzbDrone.Core.Datastore;
|
|
|
|
|
|
namespace NzbDrone.Core.RootFolders
|
|
{
|
|
public class RootFolder : ModelBase
|
|
{
|
|
public string Path { get; set; }
|
|
|
|
public long FreeSpace { get; set; }
|
|
|
|
public List<UnmappedFolder> UnmappedFolders { get; set; }
|
|
}
|
|
} |